#loading {
    inset: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    position: fixed;
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    width: 100%;
}

#loading img {
    animation: 1s ease-in-out 0s infinite alternate breathe;
    transition: opacity .2s;
    width: 90px;
    height: 90px;
    color: white;
    background-color: #171a25;
    border-radius: 22.5%;
}

@keyframes breathe {
    from {
        transform: scale(1.05)
    }

    to {
        transform: scale(0.95)
    }
}

@keyframes zoom {
    from {
        transform: scale(1)
    }

    to {
        transform: scale(0)
    }
}