/* Global Styles */
@import "global/reset.css";
@import "global/typography.css";
@import "global/transitions.css";

body {
    position: relative;
    background: url( "/assets/images/background.jpg" )  no-repeat;
    background-size: cover;
    width: 100vw;
    height: 100vh;
    height: 100svh;
}

.centered-element {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 50%;
    transform: translateY( -50% ) translateX( -50% );
}

.logo {
    height: 14rem;
}

.coming-soon {
    display: inline-block;
    white-space: nowrap;
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: -2px;
    text-transform: uppercase;
    text-align: center;
}

.coming-soon-animation {
    display: inline-block;
}

.made-by {
    position: absolute;
    white-space:nowrap;
    bottom: 2rem;
    left: 50%;
    transform: translateX( -50% );
}

.cta-link {
    transition: 300ms cubic-bezier(0.76, 0, 0.24, 1);

    &:hover {
        color: #FF1F00;
        transition: 300ms cubic-bezier(0.25, 1, 0.5, 1);
    }

    &:active {
        color: #AB0029;
    }
}

@media screen and ( max-width: 768px ) {
    .logo {
        height: 7.5rem;
    }
}