@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    font-family: 'Inter';
}

@keyframes login-slidein {
    0% { transform: translate(-50%, 100%); }
    100% { transform: translate(-50%, -50%); }
}

body {
    background-image: url("https://eu1.imagehub.host/files/bg.png");
    background-position: center;
    background-color: #1f1f27;
    font-family: Roboto, sans-serif;
    user-select: none;
    background-attachment: fixed;
    transition: 1s;
    background-position: 0px 0px;
    animation: bg 25s infinite linear;
    height: 100%;
}

@keyframes bg {
    0% {background-position: 1000px 1000px;}
}

.container {
    background-color: #2c2f33;
    color: rgb(245,245,245);
    overflow: auto;
    /*max-width: 60vw;*/
    /* max-width: 45vw; */
    /*margin-right: auto;
    margin-left: auto;
    margin-bottom: 1%;
    text-align: center;*/
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;

    border-radius: 10px;
    box-shadow: 0 5px 10px 0px rgb(18,19,25);
    height: 70vh;
    width: 80vw;

    animation-name: login-slidein;
    animation-duration: 1s;
    animation-iteration-count: 1;
}

a {
    text-decoration: underline;
    color: rgb(245,245,245);
}

a:hover {
    text-decoration: underline;
}

p {
    margin-left: 15%;
    text-align: center;
    width: 40vw;
    cursor: default;
    transition: 0.2s;
}

p:hover {
    border-style: solid;
    border-color: orange;
    border-radius: 5px;
    transform: scale(1.2);
}

h2 {
    font-weight: 600;
    padding-top: 3%;
}

.container {
    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */
       -khtml-user-select: none; /* Konqueror HTML */
         -moz-user-select: none; /* Old versions of Firefox */
          -ms-user-select: none; /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome, Edge, Opera and Firefox */
}

h5 {
    padding-bottom: 1%;
}


@media only screen and (min-width: 480px) {
}
@media only screen and (min-width: 600px) {
}
@media only screen and (min-width: 768px) {
}
@media only screen and (min-width: 992px) {
}
@media only screen and (min-width: 1382px) {
}

a, h1, h2, .container {
    -moz-transition: width 1s ease-in-out, left 1.5s ease-in-out;
    -webkit-transition: width 1s ease-in-out, left 1.5s ease-in-out;
    -moz-transition: width 1s ease-in-out, left 1.5s ease-in-out;
    -o-transition: width 1s ease-in-out, left 1.5s ease-in-out;
    transition: width 1s ease-in-out, left 1.5s ease-in-out;
}

.nav {
    display:flex;
    justify-content: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-top: 1vh;
    font-size: 1.2rem;
}

.li {
    display: inline;
    margin-top: 1vh;
    z-index: -1 !important;
}

li {
    list-style-type: none;
}

.navlink {
    color: #c5c5c5;
    margin-left: 1vw;
    text-decoration: none;
    transition: 0.3s;
    z-index: -1 !important;
}

.navlink:hover {
    color: #fff;
    text-decoration: none;
}

.navlinkActive {
    margin-left: 1vw;
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 510;
}