*{
    margin: 0;
    padding: 0;
    font-family: arial;
}

.content{
    font-family: arial;
}
.content h1{
    font-size: 70px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: none;
}
.content p{
    font-size: 20px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
body{
    background-color: antiquewhite;
}
.socials{
    border: 100px;
}
.socials h1{
    font-size: 70px;
    display: flex;
    align-items: center;
    margin-top: 100px;
    justify-content: center;
    color: white;

}
.socials p{
    font-size: 20px;
    margin-top: 10px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;

}
.banner{
    width: 100%;
    height: 0vh;
    background-image: url("https://wallpapercave.com/wp/wp2740690.jpg");
    background-size: cover;
    background-position: center;
}
.navbar{
    padding: 35px 0;
    font-weight: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo{
    width: 80px;
    cursor: pointer;
}
.navbar ul li{
    list-style: none;
    display: inline-block;
    margin: 0 20px;
    font-size: 20px;
    position: relative;
}
.navbar ul li a{
    text-decoration: none;
    color: white;
    text-transform: uppercase;
}
.navbar ul li::after{
    content: '';
    height: 3px;
    width: 0%;
    background: white;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: 0.5s;
}
.navbar ul li:hover::after{
    width: 100%;
}

