html,
body {
    height: 100%;
    width: 100%;
}

.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.loader {
    border: 8px solid #1FB6A3;
    border-radius: 50%;
    border: 8px solid ;
    border-top: 8px solid #1FB6A3;
    border-right: 8px solid white;
    border-bottom: 8px solid #1FB6A3;
    border-left: 8px solid white;
    width: 100px;
    height: 100px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.container {
    width: 100%;
    height: 100%;
    background-color: #151517;
    display: flex;
    justify-content: center;
    align-self: center;
    align-items: center;
}

.logo{
    width: 60%;
    align-self: center;
}
