body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #121212;
    color: #fff;
    text-align: center;
}

#start-page, #game-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    width: 100%;
}

#logo {

    width: 70%;
    height: auto;

}

#writing {
    width: 70%;
    margin-bottom: 2%;
    margin-bottom: 1%px;
}

button {
    background-color: #bdb300;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1.2em;
    cursor: pointer;
    border-radius: 50px;
    margin: 10px;
}

button:disabled {
    background-color: #555;
    cursor: not-allowed;
}

#reader {
    width: 80%;
    max-width: 400px;
    height: 300px;
    margin-bottom: 20%
}

#record-player {
    width: 80%;
    max-width: 300px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#record-image {
    width: 100%;
    animation: rotate 4s linear infinite;
    margin-bottom: 20%
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


/* Media Query for larger screens */
@media screen and (min-width: 768px) {
    #logo, #writing {
        width: 30%;
    }
}