*{
    box-sizing: border-box;
    margin: 0;
    font-family: monospace;
}

body{
    background: seashell;
}

h1{
    font-size: 35px;
    text-align: center;
    margin: 10px 0px;
}
.desc{
    text-align: center;
    font-size: 20px;
    margin: 10px;
}
.contenedor{
    display: flex;
    flex-direction: row;
    gap: 2em;
    justify-content: center;
    justify-items: center;
    flex-wrap: wrap;
    flex: 1 1 0;
    margin: 15px 0;
}
.item{
    background-color: rgb(58, 56, 56);
    color: #fff;
    padding: 15px;
    border-radius: 15px;
    min-width: 200px;
    margin: 0 5px;
}
p, h2, h3> .item{
    text-align: left;
    margin: 5px 0;
}
.botones{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 120px;
    width: 100vw;
    /* flex: 1 1 200px; */
    background-color: rgb(56, 35, 8);
}
.boton1{
    text-align: center;
    margin: auto;
    font-size: 20px;
    background-color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px;
    box-shadow: 2px 5px 0px #000;
}
.boton1:hover{
    background-color: aliceblue;
}