body {
    margin: 0;
    font-family: Arial, sans-serif;
    text-align: center;
    color: white;
    background-image: url(./media/background.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#home,
#game {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgba(18, 18, 18, 0.7);
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    cursor: pointer;
}

h1 a {
    color: white;
    text-decoration: none;
}

h1 a:hover {
    color: lightgray;
}

#subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: gray;
}

.mode-btn,
.truth-btn,
.dare-btn {
    padding: 15px 30px;
    margin: 10px;
    border: none;
    font-size: x-large;
    cursor: pointer;
    border-radius: 10px;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

.mode-btn {
    background-color: #333;
    color: white;
    width: 200px;
    border: 3px solid white;
}

.mode-btn:hover {
    background-color: #555;
}

.mode-btn:nth-child(3):hover {
    background-color: skyblue;
}

.mode-btn:nth-child(4):hover {
    background-color: orange;
}

#mode-title {
    font-size: 2rem;
    margin-bottom: 20px;
    cursor: pointer;
}

.truth-btn {
    background-color: skyblue;
    color: white;
}

.dare-btn {
    background-color: orange;
    color: white;
}

.truth-btn,
.dare-btn {
    flex: 1;
    min-width: 100px;
    max-width: 200px;
}

#prompt-box {
    width: 80%;
    max-width: 600px;
    min-height: 150px;
    padding: 20px;
    font-size: 1.5rem;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 20px;
}

.buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .mode-btn {
        width: 150px;
    }

    #prompt-box {
        font-size: 1.2rem;
    }

    .buttons {
        flex-direction: column;
    }
}