* {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    background-color: #FFF7ED;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
}

header {
    margin-top: 10px;
}

h1, h2, h3 {
    color: #582D1D;
}

a, h1, h2, h3, p, li {
    font-family: "Raleway", sans-serif;
    font-style: normal;
}

p {
    font-size: 18px;
    font-weight: 600;
}

ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

li {
    list-style: none;
    cursor: pointer;
}

li > a {
    text-decoration: none;
    padding: 0 10px 0 10px;
    color: #582D1D;
    
    font-size: 24px;
    font-weight: 600;
}

li > a:hover {
    color: #CC4E00;
}