/* Grundinställningar */
body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Behållaren för allt innehåll */
.main-container {
    width: 100%;
    max-width: 390px; /* Optimerad för mobilen */
    padding: 20px;
    box-sizing: border-box;
}

.content-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Loggan */
.logo {
    width: 100%;
    max-width: 300px; /* Lagom storlek på desktop */
    height: auto;
    display: block;
    transition: transform 0.4s ease;

    /* Animation för loggan */
    opacity: 0;
    animation: fadeInLogo 1.2s ease-in forwards;
}

/* Kontaktlänken */
.contact-link {
    margin-top: 40px;
    font-size: 12px;
    color: #999; /* Väldigt diskret grå som standard */
    text-decoration: none;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    
    /* Animation som startar efter loggan */
    opacity: 0;
    animation: fadeInLink 1s ease-out forwards;
    animation-delay: 1s;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #8a2be2; /* Byter till din lila färg vid hover */
}

/* Animationer */
@keyframes fadeInLogo {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLink {
    from { opacity: 0; }
    to { opacity: 1; }
}