* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    font-family: 'Arial', sans-serif;
    user-select: none;
}

body {
    background: linear-gradient(to bottom, #6a8eff, #d4a1ff, #ffb6e6); /* Soft blue → light lilac → baby pink */
    background-attachment: fixed;
}

.upper-half, .lower-half {
    width: 100%;
    display: flex;
    padding: 5vh 10vw;
    align-items: center;
}

.upper-half {
    height: 50%;
    justify-content: flex-start;
}

.lower-half {
    height: 50%;
    justify-content: flex-end;
}

.logo {
    max-width: 100%;
    max-width: min(100%, 1000px);
    width: auto;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)); /* Soft shadow for depth */
}

.text-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.style1 {
    font-size: 50px;
    color: #5a3d7a; /* Soft purple text */
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.5); /* White shadow for glow */
}

.style2 {
    font-size: 30px;
    color: #7a5a8a; /* Lighter purple */
    text-shadow: 1px 1px 2px rgba(255,255,255,0.4);
}

.style3 {
    font-size: 22px;
    color: #8a6a9a; /* Even lighter purple */
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.3);
}

.spacer {
    height: 10px;
}

.copyright {
    position: fixed;
    bottom: 10px;
    right: 10px;
    color: rgba(90, 61, 122, 0.7); /* Semi-transparent purple */
    font-size: 14px;
    font-style: italic; /* Feminine touch */
}