@import url(modules.css);
@import url(nav.css);

* {
    box-sizing: border-box;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    line-height: 0;
}

body {
    margin: 0;
    font-family: sans-serif;
    background-color: rgb(255, 251, 228);
    color: #4A1D01;
}

h1, h2, h3 {
    color: #4A1D01;
    margin: 0 0 20px;
}

h1 {
    font-size: 36px;
    font-weight: 700;
    display: block;
    text-align: center;
    padding-bottom: 20px;
}

header {
    color: #4A1D01;
    padding: 20px 0;
    text-align: center;
    margin: 0px 0;
    display: flex;
    border-radius: 5px;
    height: 120px;
}


main {

  background-color: rgb(255, 251, 228);
    border-radius: 5px;
    margin: 20px 0;
}

section {
    padding-bottom: 20px;
}

.btn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    background-color: #4A1D01;
    color: #FFFBE4;
    padding: 12px 24px ;
    border-radius: 8px;
    margin: 40px auto;
    text-align: center;
    text-decoration: none;
}

.btn:hover {
    background-color: #4A1D01;
    color: #FFFBE4;
    transform: scale(1.02);
}