* {
    box-sizing: border-box;
}

body {
    background: linear-gradient(-45deg, rgb(23, 61, 168), rgb(10, 21, 73));
    background-size: 200%;
    background-position: -100vw 0;
    background-repeat: no-repeat;
    color: white;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    margin: 0;
    padding: 25px;
    animation: coolbg 5s infinite alternate ease-in-out;
}

.logo {
    max-width: 500px;
    margin: 0 25px;
}

.goto-status {
    background: linear-gradient(-45deg, rgb(12, 26, 92), rgb(23, 61, 168));
    padding: 15px 25px;
    color: white;
    font-family: inherit;
    border-radius: 500px;
    text-decoration: none;
}

.fa-question-circle {
    position: fixed;
    bottom: 0;
    left: 0;
    font-size: 1.4rem;
    margin: 0.4em;
    cursor: pointer;
}

.fa-question-circle:hover ~ .info,
.info:hover {
    bottom: 30px;
    opacity: 1;
    display: block;
}

.info {
    background: black;
    display: none;
    padding: 16px;
    border-radius: 10px;
    border-bottom-left-radius: 0;
    margin-right: 20px;
    max-width: 500px;
    font-size: 0.8rem;
    position: fixed;
    left: 30px;
    bottom: 20px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, bottom 0.5s ease-in-out;
}

.info a {
    color: white;
}

.wave {
    position: fixed;
    z-index: -1;
    bottom: 0;
}

@keyframes coolbg {
    from {
        background-position: -100vw 0;
    }
    to {
        background-position: 0 0;
    }
}