.welcome-text {
    font-family: 'Audiowide', sans-serif;
    letter-spacing: 15px;
    /* Super wide */
    color: #888888;
    font-size: 1.5rem;
    /* Made this much larger */
}

.landing-title {
    /* The main Logo font */
    font-family: 'Audiowide', sans-serif;
    font-size: 3rem;
    color: #eeeeee;
    margin: 10px 0;
    text-transform: uppercase;
}

.landing-container {
    display: flex;
    flex-direction: column;
    /* Stacks everything top-to-bottom */
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 60vh;
    color: #cccccc;
    /* This uses Crimson Pro as the default for the page */
    font-family: 'Crimson Pro', serif;
}

.description-box {
    width: 90%;
    border-top: 2px solid #333333;
    /* Thicker lines */
    border-bottom: 2px solid #333333;
    padding: 20px 0;
    /* More breathing room */
    margin: 20px 0;
    font-family: 'Crimson Pro', serif;
    font-size: 1.5rem;
    max-width: 600px;
    /* Large, readable body text */
}

.warning-box {
    width: 90%;
    color: #aaaaaa;
    font-size: 1.2rem;
    /* Scaled up from the tiny text */
    max-width: 500px;
    margin-bottom: 60px;
    font-weight: bold;
    /* Made it BOLD as requested */
}

.enter-button-img {
    width: 150px;
    height: auto;
    /* Adjust size as you like */
    transition: transform 0.2s ease, filter 0.2s ease;
}

.enter-button-img:hover {
    transform: scale(1.05);
    /* Makes it pop slightly */
    filter: drop-shadow(0 0 10px #444444);
    /* Makes it glow a bit */
    cursor: pointer;
}