body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    background-color: #f4f4f4;
}

#entrance-overlay {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%); /* Centers the 430px container on desktop */
    width: 100%;
    max-width: 430px; /* Your requirement */
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), 
                url('Images/Image.png'); /* Use a blurred garden image */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 0.8s ease;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.content-wrapper {
    padding: 20px;
}

.title-top {
    color: #7a2048;
    letter-spacing: 2px;
    font-size: 14px;
    text-transform: uppercase;
}

.names {
    font-family: 'Great Vibes', cursive;
    font-size: 60px;
    color: #7a2048;
    margin: 20px 0;
    line-height: 1.2;
}

.names span {
    font-size: 30px;
}

#open-btn {
    background-color: #e6b3b3; /* Soft pinkish button */
    border: 1px solid #7a2048;
    padding: 10px 30px;
    border-radius: 10px;
    color: #7a2048;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 1px;
    transition: 0.3s;
}

#open-btn:hover {
    background-color: #7a2048;
    color: white;
}

#main-content {
    max-width: 430px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}