@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap');

* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
    background-color: #f4f0ea;
    color: #798252;
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: regular;
}
header{
    padding: 2rem;
    background-color: #331f19;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
header a{
    color: #798252;
}
main{
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
section{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
h2{
    color: #331f19;
    font-size: 1.4rem;
}
input[type="radio"], input[type="checkbox"] {
    accent-color: #ccd595;   
}
input[type="text"], input[type="password"], input[type="date"], input[type="email"]{
    width: 100%;
    padding: 0.6rem;
    border: 2px solid #ccd595;
    border-radius: 5px;
    background-color: transparent;
    font-family: "Hanken Grotesk", sans-serif;
}
input[type="date"]{
    color: #331f19;
}
input::placeholder{
    color:#cbbba7;
}
select{
    cursor: pointer;
    background-color: #ccd595;
    color: #331f19;
    border-radius: 5px;
    border: none;
}
img{
    width: 5rem;
    border-radius: 5px;
}
table{
    width: 100%;
    border-collapse: collapse;
}
th{
    background-color: #ccd595;
    color: #331f19;
    padding: 1rem;
}
td{
    color: #331f19;
    padding: 1rem;
    text-align: center;
}
tfoot td{
    background-color: #331f19;
    color: #f4f0ea;
}
details{
    background-color: #ccd595;
    border-radius: 5px;
    padding: 0.5rem;
}
summary{
    color: #331f19;
    margin: 0.5rem;
    cursor: pointer;
}
ol{
    margin-left: 1.5rem;
}
ol li{
    padding: 0.2rem;
}
fieldset{
    border: 2px solid #ccd595;
    border-radius: 5px;
    padding: 1rem;
}
legend{
    color: #331f19;
    padding: 0 0.5rem;
}
textarea{
    background-color: transparent;
    border-radius: 5px;
    border: #ccd595 2px solid;
}
button{
    background-color: #ccd595;
    border: none;
    padding: 0.8rem;
    color: #331f19;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
}
footer{
    background-color: #331f19;
    padding: 2rem;
    text-align: center;
}
.paragrafo-footer{
    color: #f4f0ea;
}
footer a{
    text-decoration: none;
    color: #ccd595;
}