* {
    box-sizing: border-box;
}


body {
    padding: 0px;
    margin: 0px;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    background-color: var(--blanco);
}

header {
    height: auto;
    text-align: center;
    align-items: center;
    background-color: brown;
    color: white;


}

header form {
    padding-top: 1em;
    background-color: brown;
}

header form select,
input {
    border-radius: 5px;
    font-size: 1.3em;
}

body>div {
    display: grid;
    grid-template-columns: auto auto auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    border: 3px solid black;
    width: 80%;
    border-radius: 20px;
    justify-content: space-evenly;
}
body>div>div {
    border: 1px solid black;
    border-radius: 10px;
    width: 100%;
}

body>div img {
    width: 12em;
}

#botones {
    padding-top: 1em;
    height: 4em;
    text-align: center;
    align-items: center;
    background-color: brown;
}

#botones button {
    border-radius: 5px;
    font-size: 1.3em;
}

#botones a {
    text-decoration: none;
    color: black;
}