* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #60007c;
    --secondary-color: #f4f4f9;
    --dark-text: #333;
    --light-text: #ffffff;
    --footer-text-initial: #666;
    --transition-speed: 0.5s;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
    background: #f4f4f9;
    color: #333;
    transition: background-color 0.5s ease;
}

.container {
    text-align: center;
    margin-left: 10%;
    margin-right: 10%;
    /* padding: 20px; */
    /* max-width: 100%; */
}

.logo {
    width: 100%;
    max-width: 700px;
    min-width: 350px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 3s ease;
    cursor: pointer;
}

.message {
    font-size: 2.2em;
    font-weight: 700;
    margin-top: 30px;
    opacity: 0;
    color: var(--secondary-color);
    transition: opacity 1s ease, color var(--transition-speed) ease;
}

.message-visible {
    color: var(--primary-color) !important;
}

footer {
    position: fixed;
    bottom: 20px;
    width: 100%;
    text-align: center;
    font-size: 0.9em;
    transition: color var(--transition-speed) ease;
}

#footer-text a {
    color: var(--footer-text-initial);
    transition: color var(--transition-speed) ease;
    text-decoration: none; 
}

#footer-text a:hover {
     color: var(--primary-color); 
}
