/*tipografía para el titulo*/
@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Rubik&display=swap');

/*primeros comandos universales*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*caracteristicas de la pagina*/
.cuerpo {
    background-color: black;
    height: 100%;
}

a:link { text-decoration: none; }
a:visited { text-decoration: none; }
a:hover { text-decoration: none; }
a:active { text-decoration: none; }
a { color: black;}

.botonera {
    width: 100vw;
    height: 10vh;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.titulo {
    width: 80%;
    margin: auto;
    height: 20%;
    font-size: 35px;
    color: white;
    text-align: center;
    font-family: 'Pacifico', cursive;
    font-family: 'Rubik', sans-serif;
    letter-spacing: 0, 50em;
}

.informacion{
    color:white;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    font-weight: 700;
}

/*codigo del boton*/
.button {
    display: flex;
    background-color: #00DA5A;
    color: black;
    padding: 0.5rem 1.4rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
    align-items: center;
    border-radius: 0.5rem;
    gap: 0.75rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: .6s ease;
}

.button:hover {
    box-shadow: none;
}

/*código de las cajas que contienen las frases*/
.fila{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 50px;
    margin-bottom: 50px;
}

.caja, .caja1, .caja2, .caja3 {
    width: 200px;
    height: 175px;
    padding: 15px;
    border-radius: 15px;  
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.caja{
    background-color:#CD5C5C;
}

.caja1{
   
    background-color:#9370DB;
}

.caja2{
    background-color:#2E8B57;
}

.caja3{
    background-color: #4169E1;
}

/*fin del CSS*/