/*<weight>: Use a value from 300 to 700*/
/*<uniquifier>: Use a unique and descriptive class name*/

.fredoka{
  font-family: "Fredoka", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

body{
    width: 440px;
    height: 956px;
}

main{
    height: 850px;
    background: #F6EFCF;
    overflow: auto;
}

header{
    display: flex;
    align-items: center;
    border-bottom: 8px solid #D5992B;
    background: #E4C865;
    padding: 8px 24px;
    justify-content: space-between;
    align-self: stretch;
}

.logo{
    display: flex;
    width: 59px;
    height: 56px;
    justify-content: center;
    align-items: center;
    aspect-ratio: 59/56;
}

.menu{ /*hamburger icon*/
    width: 48px;
    height: 48px;
    aspect-ratio: 1/1;
}

.content{ /*frame that holds the sections*/
    display: flex;
    width: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    padding-left: 40;
    padding-right: 40;
    margin-top: 32px;
    margin-bottom: 32px;
}

.section{
    display: flex;
    width: auto;
    padding: 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    border-radius: 16px;
    border: 8px solid #6A3A1D;
    background: #FFFFFF;
}

.button{
    display: flex;
    padding: 8px;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    border: 4px solid #D5992B;
    background: #DDB542;
}

.image{
    height: 186px;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.titleandbutton{ /*section header and button alignment*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

h1{ /*section title*/
    font-size: 16px;
    font-family: Fredoka;
    color: #6A3A1D;
    font-style: normal;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 0;

}

h2{ /*button text*/
    font-size: 12px;
    font-family: Fredoka;
    color: #FFFFFF;
    font-style: normal;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0;

}

p{ /*section text*/
    font-size: 12px;
    font-family: Fredoka;
    color:#6A3A1D;
    font-style: normal;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 0;

}

footer{
    display: flex;
    height:32px;
    width: 440px;
    background: #E4C865;
}