* {
    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);
}

main {
    width: 100vw;
    height: calc(80vh - 100px);
    padding: 2.5%;
    display: grid;
    grid-template: 1fr 1fr / 1fr 1fr;
    row-gap: 2.5%;
}

.characteristic {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.characteristic img {
    width: 6.75vw;
    height: auto;
    margin: auto;
}

.characteristic h4 {
    font-size: 2vw;
    margin-top: 1vh;
}