
:root {
    --primary-color: #ffd630;
    --primary-color-dark: #ffdb60;
    --text-color: #eaeaea;
    --background-color-dark: #0e0e0e;
    --background-color: #212121;
    --right-click-font: 'public-sans', sans-serif;
}

@font-face {
    font-family: 'Public Sans';
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    margin: 0;
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100vw; /* Full width */
    height: 100vh; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    font-family: public-sans, sans-serif;
    overscroll-behavior: none;
}

h1 {
    text-align: center;
    color: var(--primary-color);
    font-family: var(--right-click-font);
    font-size: 40px;
}

.accept-button {
    flex: none;
    order: 2;
    flex-grow: 0;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px;
    background-color: var(--primary-color);
    border-radius: 4px;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 16px;
    color: black;
    margin-top: 20px;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    letter-spacing: 1.25px;
    text-transform: uppercase;
    background-position: center;
    transition: .2s ease-in-out 0s;
}

.accept-button:hover {
    transform: scale(1.1);
}

.accept-button:active {
    background-color: var(--primary-color);
    background-size: 100%;
    transition: background 0s;
}

.backdrop {
    position: absolute;
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100vw; /* Full width */
    height: 100vh; /* Full height */
    background-color: var(--background-color-dark);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal {
    max-height: 95%;
    overflow-y: auto;
    max-width: 824px;
    margin: 10px;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    box-sizing: border-box;
    background: var(--background-color);
    border: 1px solid #000000;
    border-radius: 10px;
    padding: 40px 64px;
}

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