
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    background: #00021a;
    font-family: sans-serif;
    overflow: hidden;
}

.title {
    height: 100px;
    background: #01000e;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.title img {
    max-height: 80%;
    max-width: 90%;
}

.music-toggle {
    background: #151831;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.music-toggle:hover {
    background: #444;
}

.buttons {
    display: flex;
    height: calc(100vh - 100px);
    width: 100%;
    gap: 10px;
}

.button {
    flex: 1;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform 0.15s ease-out;
    border-radius: 100px;
    overflow: hidden;
}

.button:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .buttons {
        flex-direction: column;
    }

    .button {
        width: 100%;
        height: 50%;
    }
}