@import './fonts.css';

body {
    font-family: "Cinzel", serif;
    background-color: #f1f1f1;
    color: #424242;
    padding: 12px 32px;

    display: flex;
    justify-content: center;
}

.main-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1080px;
}

p {
    font-size: 18px;
}

h2 {
    font-style: italic;
}

a {
    color: #f1f1f1;
    background-color: #cf1e1e;
    text-decoration: none;
    font-weight: 800;
    border-style: solid;
    border-radius: 4px;
    border-width: 2px;
    border-color: #424242;
    padding: 4px 8px;
}

a:hover {
    color: #cf1e1e;
    background-color: #f1f1f1;
}

.button-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.image {
    width: 100%;
    max-height: 400px;
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
}

.image-forrest {
    object-position: top;
}

.image-bazaar {
    object-position: bottom;
}

.image-potion {
    object-position: top;
}

.image-castle {
    object-position: top;
}

@media screen and (max-width: 600px) {
    body {
        padding: 8px;
    }
}
