@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&display=swap');

html {
    font-family: 'Comfortaa', sans-serif;
}

body {
    background-color: #f0f0f0;
    text-align: center;
}

.contenedor {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 50vh;
}

.error {
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 10%;
    font-size: 100px;
    font-weight: bold;
    color: #333;
}

.message {
    font-size: 20px;
    color: #333;
}

.menu {
    border: solid rgb(0, 195, 239) 2px;
    border-radius: 5px;
    background-color: black;
    display: flex;
    flex-direction: row;
    background-color: rgba(112, 206, 240, 0.303);
}

.botonpeque {
    display: none;
}

.logomenu {
    display: flex;
    margin-left: auto;
    width: 65px;
    height: 55px;
    margin-top: 8px;
    margin-left: 8px;
}

.botones {
    display: flex;
    justify-content: flex-end;
    height: 70px;
    width: 100%;
}

.botones ul {
    list-style-type: none;
    padding: 10px;
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.botones a li {
    padding: 10px;
    cursor: pointer;
    padding-left: 20px;
    padding-right: 20px;
    border: solid rgb(0, 195, 239) 2px;
    border-radius: 5px;
    margin-right: 10px;
}

.botones a {
    text-decoration: none;
    color: rgb(23, 135, 157);
}

.botones a li:hover {
    background-color: rgba(255, 255, 255, 0.844);
}

.volver {
    margin-top: 2%;
    border: solid rgb(0, 195, 239) 2px;
    border-radius: 5px;
    padding: 10px;
    font-size: 1rem;
    outline: none;
    cursor: pointer;
    background-color: rgba(112, 206, 240, 0.303);
    font-family: 'Comfortaa', sans-serif;
}

@media only screen and (max-device-width: 717px) {
    .menu {
        display: flex;
        flex-direction: column;
        height: 350px;
    }

    .logomenu {
        display: block;
        margin: 0 auto;
        margin-top: 10px;
    }

    .botones ul {
        list-style-type: none;
        display: block;
        margin: 0 auto;
    }

    .botones li {
        text-align: center;
        padding: 10px;
        cursor: pointer;
        padding-left: 20px;
        padding-right: 20px;
        border: solid white 2px;
        border-radius: 5px;
        margin-top: 10px;
    }
}