@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;

}

body {
    width: 100%;
    min-height: 100vh;

    display: grid;
    grid-template: "header header header"100px "aside main side"1fr "footer footer footer"40px / 15% 1fr 15%;

    /* background: url(bg5.jpg); */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

header {
    grid-area: header;

    padding: 15px 30px;
    background: url(https://sfo3.digitaloceanspaces.com/e-fuente/e-fuentedevida.net/lastoo_w/vista_docente/recurso/header4.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: flex-start;
}

header img {
    height: 70px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.559));
}

main{
    grid-area: main;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pregunta{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    margin-bottom: 20px;

    padding: 20px 30px;
}

.pregunta-text{
    font-size: 26px;
    font-weight: 700;
    color: #003D7C;
    margin-bottom: 15px;
}

.respuesta{
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
}

.respuesta input{
    margin-right: 10px;
}

.pregunta button{
    padding: 7px 25px;
    border-radius: 15px;
    border: 1px solid #003D7C;
    background-color: #003D7C;
    color: white;
    font-weight: 600;
    letter-spacing: 2px;

    margin-top: 15px;
    transition: .2s ease all;
    cursor: pointer;
}

button:hover{
    background-color: white;
    color: #003D7C;
    transform: scale(1.05);
    box-shadow: 5px 7px 5px rgba(0, 0, 0, 0.5);
}

.nota{
    background-color: #003e7c54;
    color: #003D7C;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;

    padding: 5px 25px;
    margin-bottom: 15px;
    border-radius: 15px;

    border: none;
    outline: none;

    transition: .2s ease all;
    cursor: pointer;
}

.nota:hover{
    background-color: #003e7c54;
}

footer {
    grid-area: footer;
    background: url(https://sfo3.digitaloceanspaces.com/e-fuente/e-fuentedevida.net/lastoo_w/vista_docente/recurso/header4.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;

}