@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

h1 {
    font-family: 'Bebas Neue', sans-serif;
    color: #212529;
}

.page {
    background-color: rgb(235, 232, 232);

}

header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: rgb(161, 235, 70);
    padding: 10px;
}

.logo {
    width: 70x;
    height: 70px;
}

nav ul {
    display: flex;
    list-style: none;

}

nav a {
    margin: 0 10px;
    text-decoration: none;
    padding: 10px;
    border-radius: 3px;
    background-color: aliceblue;
}

.frase {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: rgb(215, 80, 80);
    color: aliceblue;
    padding: 20px;
    margin: 30px;
    text-align: center;
}

form {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    background-color: rgb(161, 235, 70);
    width: 900px;
    text-align: center;
    margin: 0 auto;
    text-decoration: none;
    padding: 5px;
    border-radius: 3px;
}

input {
    font-family: Arial, Helvetica, sans-serif;
    width: 20vh;
    height: 3vw;
    margin: 5px;
    text-align: center;
    font-size: 15px;

}


video {
    display: block;
    margin: 0 auto;
    width: 640px;
    height: 360px;
    padding: 15px;
}

footer {
    background-color: rgb(161, 235, 70);
    padding: 20px 0;
}

.pie-pagina {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pie-pagina p {
    text-align: center;
    flex: 1;
}

.redes-sociales {
    display: flex;
    gap: 10px;
}

.redes-sociales img {
    height: 5vh;
}

@media (max-width: 430px) {
    header {
        flex-direction: column;
        width: 100%;

    }

    h1 {
        display: none;
    }

    nav ul {
        margin: 15px;
    }

    form {
        width: 50%;
        font-size: 16px;
        padding: 5px;
    }

    video {
        width: 400px;
    }

    footer {
        width: 100%;
    }

}

@media (max-width: 1024px) {

    h1 {
        margin: 20px;
        text-align: center;
    }

    header {
        flex-direction: column;
        width: 100%;

    }

    nav ul {
        margin: 15px;
        text-align: center;
    }

    form {
        width: 500px;
    }

    video {
        width: 500px;
    }

    footer {
        width: 100%;
    }
}