* {
    box-sizing: border-box;
    margin:0px;
    padding:0px;
}

html {
    font-size: 24px;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    margin: 0px;
    height: 100vh;
    /* display: flex;
    justify-content: center;
    align-items: center; */
    background: linear-gradient(to right, #2f90ba75, #1636d659);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;

}

/* Navgiation Bar */
nav {
    display:flex;
    justify-content:space-between;
    align-items: center;
    background: linear-gradient(to right, #1636d659,#2d4ad759)
}

nav .hamburger {
    display:none;
}

.nav-logo a {
    display: block;
}

.logo-img {
    height:100%;
    max-height:100px
}

.nav-links {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    display:flex;
    column-gap: 20px;
}

.nav-links li {
    margin:0px
}

.nav-links li:hover{
    background: radial-gradient(#2c2e3259,#f1f1f13a);
}

.nav-links a {
    font-size: 1rem;
    color: white;
    font-weight: bolder;
    display:block; /* without block, we wouldn't be able to change margin and padding of <a> */
    padding: 15px 20px;
    text-decoration: none;
}

/* Section 1 */
.section-1 {
    margin: 20px 0px 20px 0px;
    display: flex;
    justify-content: center;
    width: 100%
}

.section-1 div {
    font-size: 0.55rem;
    max-width: 400px;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(109, 111, 112, 0.273);
    
}

/* Anya Section */
.main-content {
    display: flex;
    justify-content: center;
    width: 100%;
}

.anya-block {
    display:flex;
    flex-direction: column;
    border-radius: 30px;
    width: 100%;
    max-width: 400px;
    margin: 20px;
    background: linear-gradient(to right,#1636d659,#f1f1f13a);
}

.anya-block h1 {
    margin: 0px;
    text-align:center;
    
}

.anya-block img {
    /* margin:0 auto; */
    width: 80%;
    border-radius: 30%;
    margin: 0 auto;
    padding: 10px;
    /* display: block; */
}

.anya-block p {
    text-align: justify;
    font-size: 0.7rem;
    padding:10px;
    max-width: 500px;
    background: linear-gradient(to left,#bb27c059,#f1f1f13a);
    color: rgb(65, 41, 41);
    border-radius: 30px;
}


/* Responsive */
@media (max-width: 500px) {
    
    nav {
        flex-direction: column;
        
    }

    nav .hamburger {
        display:block;
        position: fixed;
        cursor: pointer;
        top:0px;
        left:0px;
        background: white;
        text-align:center;
        width: 50px;
        padding:5px;
    }

    .nav-logo {
        display:none;
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
        position: fixed;
        display:none;
        top: 0px;
    }

    .nav-links a {
        background: rgba(25, 25, 25, 0.821);
    }

    .nav-links a:hover {
        background: rgba(16, 16, 16, 0.989);
    }

    .nav-links.open {
       display:block;
    }

}

/* Footer */
footer {
    background: linear-gradient(to right, #0055ff59, #fd00003a);
    width: 100%;
    padding: 10px;
}

footer p {
    font-size: 0.8rem;
    text-align: center;
}
