body,
html {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%
}

body {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center
}

img {
    height: 46px;
}

.loading_spinner {
    border: 6px solid #f3f3f3;
    border-radius: 50%;
    border-top: 6px solid #E4D947;
    width: 36px;
    height: 36px;
    margin-top: 36px;
    animation: spinner .6s linear infinite
}

@keyframes spinner {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}