
/*variable declaration*/
:root{
    --primary:#e52165;
    --primary-light:#e521668a;
    --secondary:#0d1137;
    --secondary-light:#07768a;
}




*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
li{
    list-style-type: none;
}
a{
    text-decoration: none;
}
img{
    width: 100%;
    height: 100%;
}
header{
    height: 72vh;
    background:url(../images/home.png);
    background-size: cover;
    background-position: center;
    position: relative;
}
.header-content{
   padding: 0 2rem;
   background-color: var(--secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 12vh;
}
.logo{
    height: 10vh;
}
.nav-links{
    display: flex;
    width: 60%;
    justify-content: space-between;
    align-items: center;
}
.nav-links a{
    color: white;
}
.nav-links li::after {
    content: '';
    display: block;
    background-color: var(--primary);
    height: 2px;
    transform: scaleX(0);
    transition: transform 300ms;
}
.nav-links li:hover::after{
transform: scaleX(1);
}
.burger{
    display: none;
    cursor: pointer;
}
.fa-bars{
    color: white;
}

.text-center{
color: white;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
text-align: center;
}
.text-center h1{
    margin: 1.2rem 0;
}


@media screen and (max-width:800px) {
   .nav-links{
    
    position: absolute;
    flex-direction: column;
    background-color: var(--secondary-light);
    right: -10rem;
    top: 12vh;
    height: 60vh;
    padding: 1.5rem 0;
    width: 0%;
    transition: all 300ms;
   }
   .burger{
        display: block;
   }
}

@media  screen and (max-width:600px) {
   .text-center{
    width: 100%;
   } 
}

.show-nav{
width: 100%;
right: 0px;
}
.textareahide{
    left: -15rem;
}











