body {
    margin: 0;
    padding: 0;
    font-family: 'Dancing Script', cursive, Arial, sans-serif;
    overflow: hidden;
}

.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    z-index: -1;
    gap: 0;
}

.bg-img {
    background-size: cover;
    background-position: center;
    transition: all 0.5s ease;
    margin: 0;
    width: 100%;
    height: 100%;
}


.bg-img:nth-child(3) {
    background-position: 65% 65%; 
    background-size: 50%; 
}


.bg-img:nth-child(2) {
    background-size: 100%; 
    background-position: 50% 35%; 
}

.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 15px;
    max-width: 80%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

h1 {
    color: #d32f2f;
    font-size: 3.5rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.button-container {
    display: flex;
    justify-content: center;
}

#music-button {
    padding: 15px 40px;
    font-size: 1.5rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    background-color: #e91e63;
    color: white;
    font-family: 'Dancing Script', cursive;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#music-button:hover {
    background-color: #c2185b;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}