@import url("https://fonts.googleapis.com/css?family=Raleway&display=swap");

html,
body,
div#root {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    font-family: "Raleway", sans-serif;
    color: white;
}

section:nth-child(odd) {
    background-color: #343a40 !important;
}

section:nth-child(even) {
    background-color: #212529 !important;
}

.page-loader {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #0b0b0b;
    display: grid;
    place-items: center;
}
.loader {
    border: 16px solid #e3e3e3;
    border-top: 16px solid #e04c4c;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

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