#End-Screen {
    position: absolute;
    top: -200vh;
    left: 0;
    z-index: 1077;
    width: 100vw;
    height: 100vh;
    background-color: black;
    color: white;
    transition: 2s ease-in-out;
    overflow-y: auto;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5%;
}

.End-Shown {
    transform: translateY(200vh);
}

.End-Hidden {
    transform: translateY(0vh);
}

#End-Screen h1 {
    font-size: 8vw;
    font-weight: bold;
}

#End-Screen h2 {
    font-size: 4vw;
    width: 70%;
    font-weight: normal;
    text-align: center;
}

#End-Screen h3 {
    font-size: 4vw;
    width: 70%;
    text-align: center;
}

.choice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10%;
}

#stop {
    width: 30vw;
    aspect-ratio: 7/2;
    background-color: red;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4vw;
    transition: 0.6s ease-in-out;
    border-radius: 2vw;
    cursor: pointer;
}

#continue {
    width: 30vw;
    aspect-ratio: 7/2;
    background-color: green;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4vw;
    transition: 0.3s ease-in-out;
    border-radius: 2vw;
    cursor: pointer;
}

#stop:hover {
    background-color: green;
}

#continue:hover {
    background-color: darkgreen;
}
