* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent scrolling */
html, body {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #000000;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 2s ease-out, transform 2s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    width: 70vw;
    max-width: 500px;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    transition: transform 0.3s ease;
    object-fit: contain;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 2s ease-out, transform 2s ease-out;
    text-decoration: none;
    color: #ffffff;
    font-size: 1.25rem;
}

.contact-text {
    margin-top: 5px;
    text-decoration: none;
}

.mail-logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mail-logo img {
    width: 40px;
    height: auto;
}

.location {
    margin-top : 50px;
    font-weight: 300;
}

.logo.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.footer.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.footer a {
    text-decoration: none;
    color: inherit;
}