body {
    background-color: #101010 !important;
}

a {
    color: #dc3545 !important;
}

h2 {
    color: white !important;
    font-family: DM Sans;
    font-weight: 700;
}

p {
    color: white;
    font-family: DM Sans;
}

.title {
    color: #d90d18 !important;
    font-family: DM Sans;
    font-weight: 700;
    text-align: center;
}

.description {
    text-align: center;
}

#image-container {
    border: 1px solid white;
    border-style: dashed;
    height: 200px;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    animation: spin 1s linear infinite;
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    height: 50px;
    width: 50px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}