@import "../app.css";

[data-type="default"] {
    h1 {
        font-family: 'Logo', cursive;
        font-size: clamp(2.5rem, 10vw, 5rem); /* Reduit un peu le max */
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
        color: var(--anaigreen);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: .5rem 0;
        text-align: center;
    }

    .separator {
        border-top: 2px solid var(--anaipurple);
        opacity: .5;
        height: 2px;
        width: 50%;
        margin: 1rem auto;

        @media (max-width: 768px) {
            width: 80%;
        }
    }

    #header-logo {
        & .logo {
            font-family: 'Logo', cursive;
            font-size: clamp(2.5rem, 12vw, 6rem); /* Fluid logo */
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
            color: var(--anaigreen);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
    }
}
