body {
    background-image: url('/assets/images/background.jpg');
    background-size: cover;
    font-family: "Sour Gummy", serif;
    background-color: #555555;
    font-family: 'Arial', sans-serif;
}

h1 {
    color: #FFFFFF;
    font-size: 5em;
    font-weight: 800;
    margin-bottom: 40px !important;
    margin-top: 32px !important;
}

h2 {
    color: #FFFFFF;
    font-size: 2em;
    font-weight: 800;
}

.hidden {
    display: none !important;
}

.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

button {
    font-family: "Sour Gummy", serif;
    cursor: pointer;
    padding-left: 16px;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-right: 16px;
    font-size: 32px;
    font-weight: 600;
    border-radius: 8px;
    width: 400px;
    background-color: #ffd902;
    color: #75050a;
}

button:hover {
    font-weight: 800;
    box-shadow: 5px 10px 10px 0px rgba(255, 255, 255, 0.5);
    transform: translateY(-5px) scale(1.1);
    transition: all 0.3s ease;
}

button:active {
    transform: translateY(-2px) scale(1);
    box-shadow: 2px 5px 5px 0px rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease;
}