/*
#9EBF95 rgba(158, 191, 149, 1) verde
#F2D16D rgba(242, 208, 109, 1) amarillo
#401801 rgba(63, 24, 1, 1) marron
#F2695C rgba(242, 104, 92, 1) rosa
#F2F2F2 rgba(242, 242, 242, 1) gris
*/
/*
BREAK POINTS
sm 640px
md 768px
lg 1024px
xl 1280px
2xl 1536px
*/
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
}

body {
    /* background-color: #F2F2F2; */
    font-family: "Roboto", sans-serif;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

#fondo {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/fondo.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.2;
}

header {
    background-color: #9EBF95;
    box-shadow: 5px 5px 10px 5px rgba(63, 24, 1, 0.6);
    font-family: "Oswald", sans-serif;
    width: 100%;
    padding: 20px;
    text-align: center;
}

h1 {
    color: #401801;
    text-shadow: 5px 5px 5px rgba(63, 24, 1, 0.6);
    font-size: 4em;
}

main {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    margin: 25px;
}

main section:first-child {
    margin: 25px 0 25px 0;
}

h2 {
    border-bottom: 1px solid #333;
    font-size: 2em;
    text-align: center;
    margin-bottom: 15px;
}

ul {
    list-style-type: lower-latin;
    font-size: 1.3em;
    color: #333;
}

ul li::marker {
    font-weight: bolder;
    font-size: 1.3em;
}

#resultado {
    background-color: rgba(242, 208, 109, 0.3);
    border: 2px solid #9EBF95;
    border-radius: 5px;
    color: #333;
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex-grow: 1;
    padding: 20px 0 20px 0;
}

.contenidoResultado {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h4 {
    color: #333;
    font-size: 1.6em;
    font-weight: bolder;
    padding: 10px;
    text-align: justify;
}

.botones {
    width: 100%;
    display: flex;
    justify-content: center;
}

button {
    padding: 5px;
    margin: 10px;
    width: 35%;
    font-size: 1.1em;
    font-weight: bolder;
    border-radius: 5px;
    background-color: #F2695C;
    border: 2px solid #401801;
    color: black;
}

.imagen {
    width: 100%;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img {
    width: 80%;
    height: 450px;
    border-radius: 100%;
}

h3 {
    border-bottom: 1px solid #333;
    border-top: 1px solid #333;
    font-size: 1.8em;
    text-align: center;
    margin-bottom: 15px;
}

footer {
    background-color: #9EBF95;
    box-shadow: -5px -5px 10px 5px rgba(63, 24, 1, 0.6);
    color: #401801;
    font-family: "Oswald", sans-serif;
    padding: 25px;
    font-size: 1.8em;
    font-weight: bolder;
    text-align: center;
}



/***************************
DISEÑO RESPONSIVE
***************************/
/* ESTILOS RESPONSIVE */
@media (max-width: 1400px) {}


@media (max-width: 1200px) {}


@media (max-width: 992px) {
    .img {
        width: 80%;
        height: 350px;
        border-radius: 100%;
    }
    h1{
        font-size: 3.5em;
    }
    h2{
        font-size: 1.8em;
    }
    h4{
        font-size: 1.3em;
    }
    ul{
        font-size: 1.1em;
    }
    footer{
        font-size: 1.7em;
    }
}


@media (max-width: 768px) {
    .img {
        width: 80%;
        height: 250px;
        border-radius: 100%;
    }
    h1{
        font-size: 3.2em;
    }
    h2{
        font-size: 1.6em;
    }
    h4{
        font-size: 1.1em;
    }
    ul{
        font-size: 1em;
    }
    footer{
        font-size: 1.5em;
    }
}


@media (max-width: 576px) {
    .img {
        width: 90%;
        height: 200px;
        border-radius: 100%;
    }
    h1{
        font-size: 3.2em;
    }
    h2{
        font-size: 1.6em;
    }
    h4{
        font-size: 1.1em;
    }
    ul{
        font-size: 1em;
    }
    button{
        font-size: 0.8em;
    }
    footer{
        font-size: 1.3em;
    }
}