* {
    margin: 0;
    padding: 0;
    font-family: Verdana;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 15vh;
    background: #2d74cc;
    z-index: 4;
}

nav {
    display: flex;
    width: 100%;
    margin: auto;
    padding: 30px 0;
    align-items: center;
    justify-content: space-around;
}

nav ul li{
    display: inline-block;
    list-style: none;
    margin: -10px 40px;
}

nav ul li a{
    font-family: Verdana;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 60px;
}

nav ul li a:hover{
    color: #edea85;
}


.about {
    margin-left: 15%;
    margin-top: 17%;
    z-index: 3;
}

.about h1{
    font-size: 60px;
    color: black;
    margin-bottom: 2%;
    text-shadow: 2px 2px 3px #888888;
}

.about p{
    font-size: 25px;
    color: black;
    line-height: 30px;
}


.images {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 150px;
    right: 200px;
    z-index: -2;
}

.images img{
    height: 748px;
    width: 588px;
    position: absolute;
    left: 70%;
    top: 35%;
    transform: translateX(-30%);
    transition: bottom 1s, left 1s;

}

.images:hover avater{
    left: 45%;
}


.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 10vh;
    background: #2d74cc;
}