body {
    padding: 0;
    text-align: center;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    overflow: hidden;
}

#intro-screen,
#game-container,
#game-screen,
#end-game {
    min-height: 100vh;
}

#intro-screen p {
    font-size: larger;
}

#intro-screen {
    padding: 0;
    margin: 0;
    background-image: url(../images/IMG_1974.PNG);
    background-size: cover;
}

#intro-screen h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 50px;
    background-image: url(../images/This-is-Football-29-1-2025\ \(1\).gif);
    background-size: contain;
    background-repeat: repeat;
    background-position: center;
}

#intro-screen img {
    width: 600px;
    height: 500px;
}

#game-container {
    display: none;
    justify-content: center;
    width: 100vw;
    background-image: url(../images/IMG_1971.png);
    background-size: cover;
}

#stats {
    margin-right: 10px;
    display: none;
    font-size: xx-large;
    font-weight: bold;
    align-content: first baseline;
    color: white;
}

#score {
    color: forestgreen;
}

#time {
    color: red;
}

#game-screen {
    display: none;
    align-content: center;
    position: relative;
    background-image: url(../images/IMG_1957.PNG);
    background-size: contain;
    background-repeat: no-repeat;
}

#end-game {
    display: none;
    flex-direction: column;
    background-image: url(../images/EEZ9.gif);
    background-size: cover;
    font-size: x-large;
}

#game-over {
    height: 100px;
    background-image: url(../images/Game-Over-29-1-2025\ \(1\).gif);
    background-size: contain;
    background-repeat: repeat;
    margin-bottom: 500px;
}

#end-game h2 {
    color: gold;
}

#restart-button {
    width: 300px;
    height: 80px;
    margin-top: 30px;
    border-radius: 10px;
    background-color: black;
    color: red;
    font-size: xx-large;
    cursor: pointer;
}

#restart-button:hover {
    transform: scale(1.2);
    transition: transform 0.3s ease-in-out;
}

#start-button {
    margin-top: 20px;
    margin-bottom: 10px;
    background-image: url(../images/IMG_1961.PNG);
    background-size: cover;
    height: 100px;
    width: 100px;
    cursor:pointer;
    border: none;
}

#start-button:hover {
    transform: scale(1.2);
    transition: transform 0.3s ease-in-out;
}