*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Gilroy'; */

    font-family: 'Cormorant Garamond', serif;
    font-family: 'Dancing Script', cursive;
    font-family: 'Dosis', sans-serif;
    font-family: 'Montserrat', sans-serif;
    font-family: 'Noto Sans Glagolitic', sans-serif;
    font-family: 'Red Hat Display', sans-serif;
    
}

html,body{
    height: 100%;
    width: 100%;
    
}
.Parent{
   
 /* height: 100%; */
 width: 100%;
  position: relative;
  
  
}
.nav{
    height: 70px;
    width: 100%;
    border-bottom: 1px solid #dadada ;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3vw;
}
.nav h1{
   font-size: 6vh;
   font-weight: 700;
}
.navpart{
    display: flex;
    gap: 4vh;
    line-height: 5vh;
    
}
.navpart a{
    font-size: 1.5vw;
    font-weight: lighter;
    color: #5d617b;
    text-decoration: none;
    
}
.navpart a:hover{
    font-size: 1.5vw;
    font-weight: lighter;
    color: #fc5f5f;
}
.navpart2  i{
    display: none;
 }
.button{
    height: 7vh;
    width: 14vw;
    background-color: #fc5f5f;
    border: none;
    border-radius: 32px;
    color: white;
    font-size: 1.4vw;
}
.button:hover{
    background-color: #5cb85c;
}
#button{
    height: 6vh;
    width: 70vw;
    background-color: #f79233;
    border: none;
    border-radius: 32px;
    color: white;
    font-size: 3.8vw;
    font-weight: 500;
    line-height: 6vh;
    margin: 1vw;
    text-align: center;
}
#button:hover{
    background-color: #5cb85c;
}

@media (max-width: 680px) {
    .navpart a{
     display: none;
    }
    .navpart{
     display: block;
    }
    .navpart2 button{
       display: none;
    }
    .navpart2 i{
    display:inline-flex;
    font-size: 4vh;
    }
    .a2{
        text-decoration: none;
        color: black;
    }
 }
















