/* index.css */
.landing-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1000;
}

.landing-container h1 {
    font-family: MedievalSharp, cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 3rem;
    margin-bottom: 20px;
    color: yellow;
}

.landing-button {
    display: block;
    width: 200px;
    margin: 10px auto;
    padding: 15px 30px;
    font-size: 1.2rem;
    text-align: center;
}

#playGameButton {
    background-color: #85071b;
}

#playGameButton:hover {
    background-color: #4e030f;
}

#settingsButton {
    background-color: #85071b;
}

#settingsButton:hover {
    background-color: #4e030f;
}

#exitGameButton {
    background-color: #85071b;
}

#exitGameButton:hover {
    background-color: #4e030f;
}