*,
*:before,
*:after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    background-color: #ffffff;

}
.navbar{
    background-color:black;
    position:relative;
    z-index:5;
    padding: 0vh 0vh 0vh 0vh;
    width: 100%;
    height: 25vh;
    display: flex;
    align-items: center;
    justify-content:space-between;
    list-style: none;
    /* box-shadow: 0 0 20px rgba(0,0,0,0.8); */
}
.icons{

    position: sticky;
    right: 0;
}

.icons{
    padding: 40px;
}
.icons a {
    
    position: relative;
    color: #c5d1e2;
    padding: 0 15px;
    font-size: 28px;
    margin: 2vh
}

.icons a:after{
    content: "";
    position: absolute;
    background-color: red;
    height: 3px;
    width: 0;
    left: 0;
    bottom: -7px;
    transition: 0.3s;
}

.icons a:hover{
    color: red;
}
.icons a:hover:after{
    width: 20px;
}
.logo img {
    border-radius: 50%;
    height:25vh;
    margin-left: 7vh;
    margin-top: 8vh;
}


