html{
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.background {
    background-color: #1E1E1E;
}

body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

@font-face {
    font-family: 'Inter-Regular';
    src: url('./fonts/Inter/static/Inter-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Inter-Bold';
    src: url('./fonts/Inter/static/Inter-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.loader-wrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: white;
    display: grid;
    place-items: center;
}

.loader {
    border: 16px solid #003e56;
    border-top: 16px solid #b7d8e5;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

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


