/* Base styles */
body {
    font-size: 40px; /* Set a default font size */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    color: #0069e3;
    background-color: #f3f3f3;
}

header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    position: absolute;
    top: 0;
    /* border-bottom: 1px solid #ccc; */
}

main {
    padding-top: 20px;
    text-align: center; /* Center align text for better readability */
}

.login-link {
    margin-right: 20px;
}

.fade-in {
    margin: 0;
    opacity: 0;
    will-change: transform;
    transition: opacity 2s ease-in;
}

.fade-in.visible {
    opacity: 1;
}

/* Media query for larger screens (desktops) */
@media (min-width: 1024px) {
    body {
        font-size: 60px;
        flex-direction: row;
    }

    header {
        padding: 20px;
        font-size: 24px;
    }

    main {
        padding-top: 40px;
        font-size: 50px;
    }
}

/* Media query for smaller screens (mobiles) */
@media only screen (max-width: 768px) {
    body {
        font-size: 60px;
        flex-direction: column;
        padding: 10px;
    }

    header {
        font-size: 18px;
        padding: 10px;
    }

    main {
        padding-top: 10px;
        font-size: 18px;
    }
    .fade-in {
        writing-mode: vertical-rl;
    }
}
