:root {
    --main: #510606;
    --picture: #581b06;
    --accent: #1C1C1C;
    --background: #FFFFFF;
    --text: #ffbb5b;
    --lobster-two: "Lobster Two", cursive;
    --titles: #000000;
    --subtitles: #1C1C1C;
    --backgrounds: #FFFFFF;
    --small-accents: #F7D700;
}

@font-face {
    font-family: "Lobster Two";
    src: url("../assets/fonts/Lobster_Two/LobsterTwo-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

html {
    min-height: 100%;
}

body {
    background: var(--backgrounds);
    color: var(--subtitles);
    font-family: "Times New Roman", Times, serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    align-items: center;
}

body.home {
    background: var(--picture);
    color: var(--text);
}

h1 {
    color: var(--titles);
}

body.home #logo-lockup {
    position: relative;
    width: min(90vw, 60rem);
    text-align: center;
}

body.home #logo-lockup h1 {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0;
    color: var(--text);
    font-family: var(--lobster-two);
    font-size: clamp(2rem, 6vw, 5rem);
    font-weight: 400;
    text-shadow: 0 0.1em 0.2em rgba(0, 0, 0, 0.7);
}

a, a:visited, a:hover, a:active {
    text-decoration: none;
    color: var(--small-accents);
}

img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 82vh;
    object-fit: contain;
    margin: 0 auto;
}

body.home #logo-lockup #logo {
    width: 100%;
    max-width: none;
}

@media (max-width: 48em) {
    body.home {
        min-height: auto;
    }

    body.home #logo-lockup {
        width: 100%;
    }
}