/*
    Coming Soon
    (c) ArmMage LLC.
*/

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 16px;
    animation: fade .6s ease-out;
}

a {
    color: #000;
    text-decoration: none;
} a:hover {
    text-decoration: underline;
}

main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    max-width: 100%;
    padding: 0 20px;
}

footer {
    font-size: 13px;
}

.language {
    display: flex;
    position: absolute;
    top: 25px;
    right: 25px;
    gap: .5rem;
} .language a {
    display: inline-flex;
    font-size: 15px;
    padding: .5rem;
    border-radius: 5px;
    transition: background-color .2s ease;
} .language a:hover {
    text-decoration: none;
    background-color: #00000010;
} .language a:active {
    text-decoration: none;
    background-color: #00000020;
}

@keyframes fade {
    0% {
        opacity: 0%;
    }
    100% {
        opacity: 100%;
    }
}

@media screen and (max-width: 768px) {
    main {
        width: 90%;
    }
}
