@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Luckiest+Guy&family=Pacifico&family=Poppins:wght@200;300;400&family=Supermercado+One&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
}
body{
    background: white;
}
nav{
    position: fixed;
    z-index: 1;
    height: 58px;
    width: 100%;
}
.nav-menu ul {
    display: flex;
    flex-direction: row;
    list-style: none;
    width: 50%;
    margin-left: 452px;
}

.nav-menu ul li{
    margin-left: 10px;
    margin-right: 10px;
    color: white;
    font-family: "Poppins";
    font-size: 13px;
    font-weight: bold;
}
.nav-menu ul li:hover{
    cursor: pointer;
    color:white;
    border-radius: 3px;
    border: 1px solid white;
}

.nav-menu{
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 55px;
}
.logo{
    width: 50%;
}
.logo h4{
    margin-left: 28px;
    color: white;
    font-family: "Pacifico";
    font-size: 24px;
}
section{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(0, 68, 114)
    
 
}
h1{
    color: white;
    font-size: 38px;
    font-family: "Poppins";
    z-index: 1;
    margin-top: -17px;
}
.img{
    display: flex;
    justify-content: center;
}
.img img{
    width: 148px;
    height: 142px;
    border: 3px solid white;
    border-radius: 106px;
    
}
.img  :hover{
    border: 3px solid white;
    border-radius: 46px;
}

.text h1 span{
   font-weight: "400";
    color: white;
    font-size: 50px;
}
.text h5{
    color: rgb(209, 208, 208);
    font-family: "Poppins";
    font-size: 14px;
    display: flex;
    justify-content: center;
    font-weight: bold;
    margin-top: 25PX;
}
.line{
    height: 1px;
    background: white;
    width: 100%;
    border-radius: 4px;
}
.icon a{
    color: white;
    margin-left: 8px;
    margin-right: 8px;
    font-size: 25px;
    text-decoration: none;
    

}
.icon{
    width: 100%;
    height: 38px;
    display: flex;
    justify-content: center;
    margin-top: 37px;
}
.icon a:hover{
    font-size: 30px;
}
.icon i:hover{
    transition: all 2s ;
    transform: rotate(360deg);
}