#jump {
    margin-left: 8px;
    }
    
    a {
        color: initial;
        text-decoration: none;
    }

    .m-dark a {
        color: #ffffff;
    }

/************************************************/

.notification {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 1;
    background: #014280;
    padding: 5px;
}

.fa-xmark-large:hover {
    color: #ff0000;
    cursor: pointer;
}

main {
    margin-left: 10px;
}

.logo__display {
    width: 22rem;
}

@media (max-width:363px) {
    .logo__display {
        width: 15rem;
    }
}

.right {
    float: right;
}


@keyframes fade-in {
    from {
        opacity: 0;
    }
    to { 
        opacity: 1;
    }
}

@keyframes fade-out {
    from {
        opacity: 1;
    }
    to { 
        opacity: 0;
    }
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

.fa-spinner-third {
    animation: rotate infinite 1s linear;
}

.center {
    text-align: center;
}

/************************************************/

.games {
    display: flex;
    justify-content: center;
}

.game {
    font-size: 12px;
    background: #f0f0f0;
    padding: 5px;
    border-radius: 20px;
    transition: all .2s;
    margin: 0 5px;
}

.game:hover {
    scale: 1.1;
    cursor: pointer;
}

.game img {
    width: 10rem;
    padding: 5px;
    border-radius: 20px;
}

.m-dark .game {
    background: #2e2e2e;
    color: #ffffff;
}