/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
}

/* FULL SCREEN BACKGROUND */
#splash-screen {
    height: 100vh;
    width: 100%;

    background-image: url("Gridiron_coaches_splash.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* CENTER CONTENT */
.overlay {
    text-align: center;
}

/* TITLE */
.overlay h1 {
    color: #990000;
    font-size: 4rem;
    margin-bottom: 20px;
}

/* LINK */
.enter-link {
    display: inline-block;

    color: white;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;

    padding: 10px 16px;
    border-radius: 6px;

    background: rgba(0, 0, 0, 0.35);
}

.enter-link:hover {
    background: rgba(0, 0, 0, 0.6);
}

