@font-face {
    font-family: trajan;
    src: url('TrajanPro-Regular.ttf') format("truetype");
}

.loader {
font-family: trajan;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

body {
    margin: 0;
    padding: 0;
    background-image: url('background.gif');
    background-size: cover;
}

a {
    text-decoration: none;
    color:white;
    font-size: 50px;
    justify-content: center;
}

a:hover {
    color: #f00;
}



.enter-link, .hidden-image {
    opacity: 1;
    transition: opacity 1s;
}

.hidden-image {
    opacity: 0;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 2s ease-in-out;
    pointer-events: none;
    z-index: -1; /* Moves the hidden image behind other content */
}

.fade-out {
    opacity: 0;
}

.fade-in {
    opacity: 1;
    display: block;
}



.cover {
    position: fixed;
    margin: 0 auto;
    width: 100%;
}


@media screen and (max-width: 800px) {
.warning {
    display: block;
    position: absolute;
    transform: translateY(200px);
    color: #fff;
    text-align: center;
}

.warning p {
    font-size: 30px;
    transition: opacity 1s ease-in-out;
}

.center-container a {
    text-decoration: none;
    color:white;
    font-size: 100px;
    justify-content: center;
}
}

@media screen and (min-width: 800px) {
    .warning {
        display: none;
    }

    .center-container {
        text-align: center;
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .center-container a {
        text-decoration: none;
        color:white;
        font-size: 100px;
        justify-content: center;
    }
    }