.replay {
    position: relative;
    display: flex;
    justify-content: center; 
    align-items: center; 
    width: 100%;
}

.replay img {
    width: 100%;
    border-bottom: 6px solid red;
}

#replay_text {
    position: absolute;
    color: red;
    font-family: Inter;
    font-size: 130px;
    text-align: center;
    width: 100%;
    top: 10px; 
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top:90px;
    
    -webkit-text-stroke: 2px black;
    /* https://stackoverflow.com/questions/70764290/make-border-just-around-text-not-the-whole-block */
   
}


#replay_button {
    width: 200px;
    height: 75px;
    font-family: Inter;
    font-size: 30px;
    border-radius: 20px;
    position: absolute;
    color: white;
    background-color: red;
    
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    
    display: flex; 
    justify-content: center; 
    align-items: center; 
}
