@font-face {
    font-family: 'Booton';
    src: url('./assets/fonts/Booton-TRIAL-Regular.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg-color: #D0754E;
    --white: #fff;
    --black: #000;
    overscroll-behavior: none;
}

body {
    font-family: 'Booton', 'Helvetica', 'Arial', sans-serif;
    background-color: var(--bg-color);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100dvh;
    padding: 0;
    margin: 0;
    letter-spacing: -1%;
    font-weight: 300;
}

body,
body * {
    color: var(--black);
    font-size: 24px;
}

.container {
    text-align: center;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

h1,
h2,
h3 {
    font-weight: 300;
    margin: 0;
}

h1 {
    font-size: 44px;
    margin-bottom: 16px;
}

#content {
    height: 100dvh;
    width: 100%;
    display: flex;
    align-items: center;
}

p {
    margin-top: 0;
    margin-bottom: 26px;
    word-break: keep-all;
}

img {
    position: relative;
    margin-top: 20px;
    left: 0;
    width: 100%;
    max-width: calc(100% - 40px);
    max-height: calc(100vh - 100px);
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Custom */
.automargin {
    margin-left: auto;
    margin-right: auto;
}

.max-400 {
    max-width: 400px;
}

.reveal {
    visibility: hidden;
}

.mt-20 {
    margin-top: 20px;
}