/* Selectores de elemento*/

@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Bebas+Neue&family=Bitter:ital,wght@0,100..900;1,100..900&family=Noto+Serif+Display:ital,wght@0,100..900;1,100..900&family=PT+Sans+Narrow:wght@400;700&display=swap');
body {
    background-color: rgb(135, 75, 156);
font-family: "Noto Serif Display", serif;
}

 h1, h2, h3 {
    font-family: "Cherry Cream Soda", system-ui;
  }
    

main {
    background-color: antiquewhite;
    width: 1300px;
    max-width: 95%;
    margin: 0 auto 0 auto;
}
header, footer {
    background-color:rgb(133, 152, 188);
    color: white;
    padding: 40px;
    text-align: center;
}
nav{
    /* el ancho el tipo y el color*/
    border-bottom: 2px solid rgb(133, 152, 188);
}

nav ul{
    list-style: none;
}

nav li {
    display: inline;
    
}

nav a {
    text-decoration: none;
    color: 133, 152, 188;
    padding: 10px;
    background-color: #f5f5f5;
}

nav a:hover{
    color: black;
    background-color: white;
}

section{
    display: flex;
    gap: 20px;
    padding: 15px;
}

.centrado{
    display: block;
    margin: 0 auto;
    width: 100%;
}
.adaptable{
    display: block;
    width: 100%;
}

.world{
    display: block;
    width: 40;
    border: 1px solid rgb(104, 100, 84);
}

@media screen and (max-width:600px) {
    header, footer{
        padding: 20px;
    }
    section {
        display: block;
    }
}