@font-face {
    font-family: 'gilroy-light';
    src: url('fonts/gilroy-light-webfont.woff2') format('woff2'),
         url('fonts/gilroy-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.fullPageDiv {
    background-color: rgb(26,26,26);
    position: absolute;
    height: 100%;
    top: 0px;
    left: 0px;
    min-width: 100%;
    margin: 0;
    padding: 0;
    
    animation-name: bgAnimation;
    animation-delay: 0s;
    animation-fill-mode: forwards;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
}

.comingSoonImg {
    position: relative;
    background-color: transparent;
    width: 40%;
    min-width: 300px;
    opacity: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
    top: 30%;
    
    transition: transform 0.5s;
    transform-origin: center;
    
    animation-name: logoAnimation;
    animation-delay: 1.1s;
    animation-fill-mode: forwards;
    animation-duration: 1.2s;
    animation-timing-function: ease-in-out;
}

.comingSoonImg:hover {
    transform: scale(1.07);
}

h1 {
    background-color: transparent;
    position: relative;
    opacity: 0;
    color: rgb(204,204,204);
    text-align: center;
    top: 31%;
    font-family: gilroy-light, sans-serif;
    font-size: 40px;
    letter-spacing: 5px;
    width: 100%;
    
    transition: color 0.5s;
    
    animation-name: textAnimation;
    animation-delay: 2.2s;
    animation-fill-mode: forwards;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
}

h1:hover {
    color: #7c43bd;
}

a {
    text-decoration: none;
    background-color: transparent;
    position: absolute;
    opacity: 0;
    color: rgb(204,204,204);
    text-align: center;
    bottom: 3%;
    font-family: gilroy-light;
    font-size: 9px;
    letter-spacing: 5px;
    width: 100%;
    
    animation-name: copyrightAnimation;
    animation-delay: 4.5s;
    animation-fill-mode: forwards;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
}

@keyframes logoAnimation {
    0% {top: 20%;opacity: 0;}
    100% {top: 30%;opacity: 1;}   
}

@keyframes textAnimation {
    0% {opacity: 0; transform: scale(0.9)}
    100% {opacity: 1;, transform: scale(1)}   
}

@keyframes bgAnimation {
    0% {opacity: 0;}
    100% {opacity: 1;}   
}

@keyframes copyrightAnimation {
    0% {opacity: 0;}
    100% {opacity: 1;}   
}