@import "colors.css";
@import url('https://fonts.googleapis.com/css?family=Poppins');

* {
    margin: 0px;
    padding: 0px;
}

.page {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.container {
    position: absolute;
    display: flex;
    width: clamp(200px, 80%, 1200px);
    height: clamp(110px, 80%, 700px);
    align-items: center;
    justify-content: center;
}

footer {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 0;
}

.copyright {
    line-height: 40px;
    font-family: 'Poppins';
    font-size: 17px;
    color: var(--on-background);
}

#loader-wrapper {
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    z-index: 22;
    background-color: var(--secondary);
}

.loader {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.loader div {
    position: absolute;
    opacity: 1;
    border-radius: 50%;
    animation: ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    border: 4px solid var(--highlight);
}

.loader div:nth-child(2) {
    animation-delay: -0.5s;
}

@keyframes ripple {
    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 72px;
        height: 72px;
        opacity: 0;
    }
}