/* Ich hasse css */

@import url('https://fonts.googleapis.com/css?family=Karla:400,700&display=swap');

:root {
    --bgColor: #223344;
    --bgColor2: #090a0f;
    --accentColor: rgba(245, 0, 245, 0.750);
    --font: 'Karla', sans-serif;
    --delay: .3s;
}

body {
    margin: 0;
    padding: 0;
    min-height: 75vh;
    font-family: var(--font);
    background: black;
    opacity: 0;
    animation: 1s ease-out var(--delay) 1 transitionAnimation;
    animation-fill-mode: forwards;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

#copyright {
    text-align: center;
    font-size: 0.75em;
    color: #808080;
    animation: blink;
    white-space: nowrap;
}

#copyright::after {
    content: "|";
    animation: blink 1s linear infinite;
}

@keyframes blink {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

#username {
    color: var(--accentColor);
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.25;
    display: block;
    font-family: var(--font);
    width: 100%;
    text-align: center;
    text-decoration: none;
}

#usernameadds {
    color: var(--accentColor);
    text-align: center;
}

#buttons {
    max-width: 500px;
    width: auto;
    display: block;
    margin: 25px auto;
    cursor: pointer;
}

.button {
    position: relative;
    background-color: transparent;
    color: var(--accentColor);
    border: solid var(--accentColor) 2px;
    border-radius: 7.5px;
    font-size: 1rem;
    text-align: center;
    display: block;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 10px;
    text-decoration: none;
    transition: all .25s cubic-bezier(.08, .59, .29, .99); 
    -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) {
    .button:hover {
        background-color: var(--accentColor);
        color: var(--bgColor);
    }
}

.button:active {
    background-color: var(--accentColor);
    color: var(--bgColor);
}

#text {
    color: var(--accentColor);
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.25;
    display: block;
    font-family: var(--font);
    width: 100%;
    text-align: center;
    text-decoration: none;
}

#img {
    width: auto;
    display: block;
    margin: 25px auto;
    cursor: pointer;
}

@keyframes transitionAnimation {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(25vh);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
  
.fade-in {
    animation: fadeIn 0.5s ease-in;
}
  
  
.fade-out {
    opacity: 0;
    transition: opacity .5s ease-out;
}
