*, html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: linear-gradient(20deg,rgb(0, 51, 14) 4%, rgb(5, 102, 63) 41%, rgb(39, 207, 112) 100%);
}

/*  */

header {
    background: linear-gradient(200deg,rgb(0, 51, 14) 4%, rgb(5, 102, 63) 41%, rgb(39, 207, 112) 100%);
    padding: 20px;
}
.title {
    text-align: center;
    color: white;
    font-family: Poppins;
    font-weight: 900;
}

/*  */

nav {
    background: white;
    padding: 10px;

    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

nav ul li {
    display: flex;
    justify-content: space-evenly;
}

nav ul li a {
    list-style: none;
    text-decoration: none;
}

/*  */

main {
    flex: 1;
    font-family: Lora;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
}


.nava {
    display: inline-block;

    background: none;
    color: rgb(0, 51, 14);
    
    font-family: Roboto;
    font-weight: 500;

    box-shadow: none;

    border-radius: 0px;

    /* transition: all 0.5s ease 0s; */
}
.nava:hover {
    transform: translateY(0);

    color: white;

    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
    font-weight: 900;

    background: rgb(0, 51, 14);

    border-radius: 100px;
}


.container {
    background: linear-gradient(0deg,rgb(244, 255, 247) 0%, rgb(81, 255, 157) 100%);
    margin: 10px 20px;
    
    border-radius: 25px;
    
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    color: rgb(0, 51, 14);
    
    transition: all 0.5s ease;
    
    padding: 40px 40px;

    text-align: center;

    overflow: hidden;

    width: 350px;
    
}
.container h1 {
    text-align: center;
    margin-bottom: 50px;
    /* padding-top: 20px; */

    font-weight: 700;
    font-size: x-large;
}
.container:hover {
    padding: 60px 40px;
    align-content: center;

}
.container h1:hover {
}

/* */

li {
    list-style: none;
}

a {
    display: block;

    transition: all 0.3s ease;

    background: rgb(0, 51, 14);

    border-radius: 8px;
    padding: 10px 10%;

    color: rgb(255, 255, 255);

    box-shadow: 0 0 5px rgba(0, 125, 64, 0.492);

    text-decoration: none;
}
a:hover {
    background: rgb(0, 161, 43);

    box-shadow: 0 0 5px rgba(0, 202, 104, 0.492);

    transform: translateY(-4px);
}

/*  */

footer {
    color: white;
}