@font-face {
    font-family: "Font Regular";
    src: url(../fonts/Montserrat.ttf);
}

@font-face {
    font-family: "Font Italic";
    src: url(../fonts/Montserrat-Italic.ttf);
}

html, body {
    user-select: none;
    margin: 0px;
    padding: 0;
    list-style: none;
    background: linear-gradient(45deg, #0f1a27, #203143, #2c4264);
    height: 100vh;
    color: #FFFFFF;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font: 400 1rem/1.625rem "Font Regular", Helvetica, Arial, "Open Sans", sans-serif;
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
}

#logo {
    width: 120px;
    height: auto;
    margin: 20px 0px 0px 20px;
}

#animation {
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100vw - 20px);
    height: calc(100vh - 20px);
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0px;
    top: 0px;
    left: 50px;
    right: 50px;
}

.floating-item {
    position: absolute;
    top: -10px;
    color: white;
    font-size: 14px;
    opacity: 0.8;
    user-select: none;
    pointer-events: none;
    animation: floatAnimation linear infinite;
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0px) translateX(0px);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) translateX(20px);
        opacity: 0;
    }
}

.action {
    -webkit-animation: action 2s infinite alternate;
    -moz-animation: action 2s infinite alternate;
    -ms-animation: action 2s infinite alternate;
    -o-animation: action 2s infinite alternate;
    animation: action 2s infinite alternate;
}

@keyframes action {
    0% {
        transform: translateY(0);opacity: 0.7;
    }

    100% {
        transform: translateY(-10px);opacity: 1;
    }
}

@keyframes action {
    0% {
        transform: translateY(0);opacity: 0.7;
    }

    100% {
        transform: translateY(-10px);opacity: 1;
    }
}

.action p {
    text-align: center;
    font-size: 1.5em;
}

#footer {
    position: fixed;
    bottom: 0px;
    min-height: 30px;
    width: 100%;
    padding-bottom: 10px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.85em;
    vertical-align: bottom;
    background: rgba(0, 0, 0, 0.2); /* Adds a translucent black background */
}

#footer img {
    margin: 0px;
    height: 25px;
    width: 20px;
}

#footer a {
    color: #FFFFFF;
    text-decoration: none;
}

#footer a:hover {
    color: #db6732;
    /*text-decoration: underline;*/
}

@media (max-width: 992px) {
  .center {
    top: 30px;
  }
}

/*@media screen and (max-width: 1200px) {

    .center {
        top: 40%;
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    .action p {
        font-size: 2em;
        line-height: 1.6em;
    }
}*/