
body {
    margin: 0;
    background-color: black;
    align-items: center;
    display: flex;
    padding: 0;
    justify-content: center;
    box-sizing: border-box;
    
    height: 100vh;
}

#welcomeGif {
    z-index: 1;
    position: relative;
}

#startButton, #instructionButton, #musicButton {
    position: absolute;
    z-index: 2;
    background: orange;
    width: 100px;
    height: 40px;
    transform: translateX(-50%);
}

/* #startButton {
    top: 25%;
    left: 50%;
}

#instructionButton {
    top: 32%;
    left: 50%;
}

#musicButton {
    top: 39%;
    left: 50%;
} */

#startButton {
    top: 50%;   
    left: 50%;
    transform: translate(-50%, -80px);  
}

#instructionButton {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30px);
}  

#musicButton {
    top: 50%;
    left: 50%;
    transform: translate(-50%, 20px);  
}

.instructions {
    color: white;
    text-align: center;
    font-family: Arial;
}

.instructions h2 {
    margin-bottom: 20px;
    font-size: 28px;
}

.instructions p {
    font-size: 18px;
    margin: 10px 0;
}