@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Merriweather+Sans&family=Montserrat:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Merriweather+Sans&display=swap');

*{
    margin: 0;
    padding: 0;
    text-decoration:none;
    list-style: none;
}

body {
    font-family:'Merriweather Sans', sans-serif ;
    background-color: #24252A;

}

/*header{
    height: 100vh;
    width: 10vw;
    background-size: cover;
    
}*/

menu{
   box-sizing: 1.5em;
}

.navbar{
    position: absolute;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
}

.navbar a{
    color: #edf0f1;
}

.navbar .logo{
    font-size: 1.5em;
}

.navbar .nav-links ul {
    display: flex;
    align-items: center;
}

.navbar .nav-links ul li{
    margin:0 25px
}

/*.navbar .nav-links ul li.active a{
    color: #ed3c57;
    font-weight: 600;
}*/

.nav-links li a {
    transition: all 0.3s ease 0s;
}

.nav-links li a:hover {
    color: #ed3c57;
     
}

button{
    font-family: "Merriweather Sans", sans-serif;
    font-weight: 500;
    text-decoration: none;
    padding: 9px 25px;
    background-color: #ed3c57;
    border: none;
    border-radius: 30px;
    transition: 0.7s ease;
}

button:hover{
    transform: translateY(-10px);
    background-color: #edf0f1;
    color: #ed3c57;
}

.navbar .menu {
    display: none;
    position: absolute;
    top: 50px;
    right: 10px;
    width: 35px;
}

.container{
    min-height: 110vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content:center;
}
 
.container .social{
  position: absolute;
  top: 60%;
}

h1{
    font-size: 35px;
    font-family: 'Merriweather Sans', sans-serif;
    background: linear-gradient(to right, #ff7940, #ef3a68, #e11eff,rgb(231, 123, 248) );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 20px 0px 20px;
    
}

.social a{
    width: 37px;
    min-height: 37px;
    border-radius: 50%;
    display:inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #eee;
    cursor: pointer;
    margin-right: 15px;
    background-color: rgba(255, 255, 255, 0.1);
}

.social a:hover{
    transform: scale(1.1);
    background: #ed3c57;

}


@media screen and (max-width: 700px) {
    .navbar{
        padding: 0;
    }
    .navbar .menu{
        display: block;
    }
    .navbar .logo{
        position: absolute;
        top: 50px;
        left: 50px;
        font-size: x-large;
      
    }
    button{
        position: absolute;
        top: 50px;
        right: 50px;
    }
    .nav-links {
        top: 0;
        left: 0;
        position: absolute; 
        background-color: rgba(255, 255, 255, 0.40); 
        backdrop-filter: blur(7px);
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: -100%;
        transition: all 0.7s ease ;
    }
    .nav-links.mobile-menu{
        margin-left: 0;
    }
    .nav-links ul{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .navbar .nav-links ul li{
        margin:60px;
        font-size: 1.5em;
    }
    h1{
        font-size:x-large
    }
   
}