body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

.loader-container {
    text-align: center;
}

.loader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid rgb(149, 0, 0);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 6s linear infinite;
	margin-left: 197px;
	text-align: center;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

p {
    font-size: 1.5em;
    margin-top: 20px;
    color: #333;
}
