/* La línea import carga las tipografías de Google Fonts */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100&display=swap');


/*Acá comienzan los Selectores de etiquetas HTML */

body {
    background-color: rgb(74, 51, 204);
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
}

h1, h3, li {
    font-family: 'Raleway', sans-serif;
}

p {
    line-height: 28px;
    color: black;
}

h5 {
    color:rgb(233, 165, 40);
    text-align: center;
}

img {
    display: block;
    margin: auto;
}

li {
    display: inline-block;
    padding: 10px;
    list-style-type: square;
    list-style: square;

}

/*Acá comienzan los Selectores personalizados */

.contenedor {
    margin: 0 auto;
    width: 800px;
    background-color: rgb(255, 255, 255);
    border: 5px solid rgb(255, 255, 255);
    border-radius: 10px;
}

.cabeza {
    text-align: center;
    padding: 10px;
    color: white;
    background-color: rgb(74, 51, 204);
}

.cuerpo {
    padding: 10px;
}

.pie {
    padding: 50px;
    color: rgb(255, 255, 255);
    background-color: rgb(74, 51, 204);
    text-align: center;
}

.adaptable {
    width: 100%;
    height: auto;
}

.menu {
    color: rgb(62, 176, 221);
    background-color: rgb(255, 255, 255);
    text-decoration: none;
    padding: 10px;
    border-radius: 10px;
}

.menu:hover {
    color: rgb(0, 0, 0);
    background-color: rgb(66, 141, 226);
    text-decoration: none;
}