*{
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}



#wrapper{
    max-width: 1400px;
    background-color: #D9D9D9;
    height:auto;
    margin:auto;
}

button{
    background-color: #FF69B4;
    color: #fff;
    border-radius: 10px;
    border: #c80064 5px solid;
    box-shadow: 0px 5px 5px #333;
}

button a{
    text-decoration:none;
    color:#fff;
  
  
}
button:hover{
    border: #eb97c1;
    background-color: #f0e6f9;
}

button a:hover{
    color:#FF69B4;
}

.nav h3{
    text-align: center;
    margin: auto;
    padding: 5px;
    color: #fff;
}

.nav-list,
.dropdown-links,
.dropdown-links li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list{
    display: flex;
    flex-direction: row;
    gap: 100px;
    margin: auto;
    align-items: center;
}


#menu-links{
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background-color: #eb97c1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease-in-out;
    z-index: 1000;
}

#menu-links.active{
    right: 0;
}

#overlay_nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 900;
}

#overlay_nav.active{
    opacity: 1;
    visibility: visible;
}

#menu-links a{
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    color: #FF69B4;
    padding: 10px;
    display: block;
}

.dropdown-links li{
    opacity: 1;
    transform: translateX(0);
    transition: 0.3s ease;
}

.dropdown-links li a:hover{
    background-color: #d4c2cb;
}

.logo{
    margin: auto;
    width: 10%;
    height: auto;
}

.logo img{
    width: 100%;
    height: auto;
}

#iconOpen,
#iconClose{
    font-size: 1.5rem;
    color: #FF69B4;
    cursor: pointer;
    z-index: 1100;
    margin: auto;
    padding: 10px;
}

.hide{
    display: none;
}



/*desktop styling*/
@media(max-width:699px){
    .dropdown-links li{
        opacity: 0;
        transform: translateX(20px);
    }

    #menu-links.active .dropdown-links li{
        opacity: 1;
        transform: translateX(0);
    }
}

@media(min-width:700px){
    #iconOpen,
    #iconClose,
    #overlay_nav{
        display: none !important;
    }

    #menu-links{
        position: static;
        width: 100%;
        height: auto;
        right: 0;
        background: transparent;
        padding-top: 0;
        transition: none;
    }

    .dropdown-links{
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .dropdown-links li{
        opacity: 1;
        transform: none;
        margin: 0;
    }

    .dropdown-links li a{
        color: #FF69B4;
    }
}

/*Footer*/
#footer.logo h3, #footer.logo h6{
    padding:2px;
    margin:1px;
}
#footer {
    text-align: center;
    
}
.socials ul{
    display: flex;
    flex-direction: row;
    list-style-type: none;
    align-content: center;
    margin: auto;
  

}
.social-1{
    margin:auto;
}
.social-1 img{
    width:75px;
    height:auto;
}
.date{
    background-color: black;
    color:#fff;
}

/*footer*/
#footer{
    text-align: center;
    align-content: center;
    margin:auto;
    margin-top: 20px;
}

  #footer.footer_text{
        width: 100%;
        align-content: center;
        margin:auto;
   }
   
@media(min-width:700px){
     .socials ul{
     display: flex;
     flex-direction: row;
     flex-wrap: wrap; 
     justify-content: space-around;
     justify-content: center;
     gap: 20px;
    }   
}