@font-face {
    font-family: LFAlphabetMetro;
    src: url(fonts/LFAlphabetMetro.otf);
}

@font-face {
    font-family: news450;
    src: url(fonts/NEWS-450.otf);
}

@font-face {
    font-family: times;
    src: url(fonts/TIMES.TTF-16px-Regular.otf);
}

body {
    font-family: LFAlphabetMetro;
}

a {
    color: #3366CC;
}

.red {
    color: red;
}

.glow {
    animation-name: glow;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    line-height: 18px;
}

@keyframes glow {
    0% {
        color: red;
    }
    100% {
        color: white;
    }
}

p {
    margin: 0;
    padding: 0;
}

.top {
    position: fixed;
    z-index: 2;
}

.top-animation {
    position: fixed;
    z-index: 2;
    color: white;
    margin: 8px;
}

.left {
    position: fixed;
    top: 50%
}

.mid {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    text-align: center;
    font-family: news450;
    z-index: -1;
}

.right {
    position: fixed;
    bottom: 50%;
    right: 0%;
    text-align: right;
    padding-right: 0.5%;
}

.bottom {
    position: fixed;
    right: 0%;
    bottom: 0%;
    text-align: right;
    padding-right: 0.5%;
    padding-bottom: 0.5%;
}

.bottom-animation {
    position: fixed;
    left: 50%;
    transform: translate(-50%);
    bottom: 0%;
    text-align: right;
    padding-right: 0.5%;
    padding-bottom: 0.5%;
    color: white;
    font-family: times;
    z-index: 1;
}

.animation-button {
    font-family: times;
    color: red;
}

.click-here {
    text-decoration: underline;
    cursor: pointer;
}

#curtain {
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    background-color: black;
}

#carroussel {
    position: fixed;
    width: 100%;
    height: 100%;
    transform: translate(0%, 0%);
    display: grid;
    align-items: center;
    transition: transform 0.6s ease, grid-template-columns 0.6s ease;
}

.clip {
    width: 100%;
    height: auto;
}

#mobile {
    text-align: center;
    font-family: times;
    font-size: 22px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}