@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&family=Oxygen&display=swap');

/* SELECTORES DE ETIQUETAS DIRECTOS */

h1, h2, h3, h4 {
    font-family: 'Josefin Sans', sans-serif;
}
p, a {
    font-family: 'Oxygen', sans-serif;
}
body {
    background-color: lavender;
}
div {
    background-color: white;
    width: 640px;
    max-width: 90%;
    margin: 50px auto 0px auto;
    border: 4px solid mediumpurple;
    border-radius: 8px;
    /*text-align: center;*/
}
h1 {
    color: mediumpurple;
    padding-left: 5px;
}
h2 {
    color: white;
    background-color: mediumpurple;
    font-size: medium;
    padding: 10px;
}
p {
    padding-left: 5px;
}

footer {
    color: white;
    background-color: mediumpurple;
    padding: 10px;
    text-align: center;
}

header {
    border-bottom: 2px solid mediumpurple;
}


/* SELECTORES PERSONALIZADOS */

.adaptable {

        display: block;
        width: 100%;
        height: auto;

}