* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Lora', serif;
    background-color: #28231D;
    color: #FFFFFF;
    line-height: 1.6;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
    display: none;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    text-transform: uppercase;
}

p {
    font-family: 'Lora', serif;
}

#hamburger {
    display: none;
}

#mobile-menu {
    display: none !important;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #322D27;
    width: 100%;
    height: 80px;
    padding: 0 20px;
}

#header {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    gap: 25px;
    align-items: center;
    font-family: 'Cinzel', serif;
    font-weight: 700;
}

#logo {
    height: 50px;
    width: 50px;
}

.button {
    background-color: #3C3731;
    color: #fff;
    border: 1px solid #3C3731;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.25s ease;
}

.button:hover {
    background-color: #46413B;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
}

.button:active {
    background-color: #292929;
    transform: scale(0.975);
}

#text-link {
    margin: 0 6vw;
    line-height: 1;
}

#text-link:hover {
    text-shadow: 1px 1px 5px rgba(255, 255, 255, 0.25);
}

.banner {
    width: 100%;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.banner h2 {
    font-size: 2.25vw;
}

.banner p {
    font-size: 1.25vw;
}

.banner .button {
    margin-top: 20px;
    font-size: 1vw;
}

#second {
    background-color: #2F2923;
}

#third {
    background-color: #25211C;
}

#fourth {
    background-color: #1D1915;
}

#fifth {
    background-color: #34302A;
}

#second .button {
    background-color: #3A332D;
    border: 1px solid #3A332D;
}

#second .button:hover {
    background-color: #453D37;
}

#second .button:active {
    background-color: #292421;
}

#third .button {
    background-color: #2F2A25;
    border: 1px solid #2F2A25;
}

#third .button:hover {
    background-color: #3A3530;
}

#third .button:active {
    background-color: #1F1B17;
}

#fourth .button {
    background-color: #26211D;
    border: 1px solid #26211D;
}

#fourth .button:hover {
    background-color: #302A25;
}

#fourth .button:active {
    background-color: #181410;
}

#fifth .button {
    background-color: #3F3A34;
    border: 1px solid #3F3A34;
}

#fifth .button:hover {
    background-color: #4A453F;
}

#fifth .button:active {
    background-color: #2E2A25;
}

footer h3 {
    font-family: 'Cinzel', serif;
    font-size: xx-large;
    text-align: center;
    padding: 10px 0;
}

footer img {
    display: block;
    margin: auto;
    width: min(50px, 5vw);
    height: auto;
}

footer div {
    width: 70%;
    margin: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
}

footer a img {
    transition: transform 0.25s ease-in-out;
}

footer a img:hover {
    transform: scale(1.25);
}

footer p {
    text-align: center;
    font-size: 0.75em;
    opacity: 0.75;
}