@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&family=Shadows+Into+Light&family=Source+Sans+Pro:ital,wght@1,700&display=swap');


/*selectores de etiquetas directos*/

body {
    background-color: rgb(121, 201, 201);
}
.contenedor {
    background-color: white;
    width: 640px;
    max-width: 90%;
    margin: 10px auto;
    /*padding: 20px;*/
    border: 4px solid rgb(89, 176, 181);
    border-radius: 10px;
    /*text-align: center;*/
}
h1 {
    color: rgb(89, 176, 181);
}
h2 {
    color: white;
    background-color: rgb(121, 201, 201);
    font-size: 20px;
    font-variant: small-caps;
    /*padding: 10px;*/
}
h1, h2, h3, h4 { 
font-family: 'Permanent Marker', cursive;
text-align: center;
}
p, a {
    font-family: 'Source Sans Pro', sans-serif;
    text-align: justify;
}

footer{
    color: white;
    background-color: rgb(121, 201, 201);
    padding: 50px;
    text-align: center;
}
header, section{
    padding: 10px;
}
header{
    border-bottom: 4px solid rgb(121, 201, 201);
}
/*img{
    display: block;
    width: 100%;
    height: auto;
}*/

/*selectores personalizados*/
.adaptable{
    display: block;
    width: 100%;
    height: auto;
}
.otro-formato{
    padding: 10px;
    text-transform: uppercase;
    text-align: center;
}
nav{
    display: flex;
    padding: 10px;
    background-color: rgb(89, 176, 181);
}
nav a{
    padding: 10px;
    color: white;
    text-decoration: none;
    transition: all 1s;
}
nav a:hover{
    padding: 10px;
    color: rgb(9, 83, 102);
    text-decoration: underline;
}
.portada {
    background-image: url(../img/estrellas.png);
    height: 400px;
    color: rgb(9, 83, 102);
    padding: 30px;
    font-size: 48px;
    text-shadow: 1px 2px 12px rgba(22,153,156,0.85);
    background-attachment: fixed;
}
html{
    scroll-behavior: smooth;
}