/* Estilos generales*/

* {
    margin: 0;
    padding: 0;
    font-family: "Noto Sans", sans-serif;
}

body {
    min-height: 100vh;
    background-color: #2B807B;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

/* Contenedor*/

#contenedor {
    display: flex;
    justify-content: center;
    height: 220px;
    width: 450px;
    background-color: white;
    border: 5px solid black;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    margin-top: auto;
    margin-bottom: auto;
}

/* Texto */

#color {
    font-size: 70px;
    font-weight: bold;
}

/* Botón */

button {
    font-size: 30px;
    font-weight: bold;
    color: white;
    border-radius: 20px;
    background-color: #008CBA;
    margin: 15px;
    padding: 10px 30px;
    border: 3px solid #008CBA;
    user-select: none;
    cursor: pointer;
    transition-duration: 0.4s;
}

button:hover {
    background-color: #05455A;
}

footer {
    color: white;
    text-align: center;
    padding: 20px;
    font-weight: bold;
    
}