body, html {
    margin: 0;
    height: 100%;
    overflow: hidden;
}

body {
    background-color: #11151C;
    color: #31425E;
}

body.transition-theme {
    background-color: var(--new-bg-color);
    color: #00000055;
}

* {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    margin: 0;
}

.center {
    position: relative;
    margin: 0;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
    /* unselectable */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.center-clone {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 101;
    transition: none;
}

p {
    opacity: 0.5;
    font-size: 1rem;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: #31425E;
    width: 0;
    height: 0;
    transform: scale(0);
    transition: transform 1s, width 1s, height 1s;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    transition-timing-function: cubic-bezier(0.650, 0.235, 0.550, 0.970);
}

h5 i {
    font-size: 0.7rem;
    opacity: 0.5;
}

.circle.expand {
    transform: scale(1);
}