body {
    margin: 0;
    padding: 0;
    background-color: #fafafa;
    font-family: Arial, sans-serif;

}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.logo {
    width: 300px;
    margin-bottom: 30px;
}


.loader {
    border: 8px solid #f3f3f3; /* Light grey background */
    border-top: 8px solid #B200BD; /* Blue spinning part */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 2s linear infinite;
    margin-bottom: 30px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.motto {
    font-size:30px;
    margin-bottom:40px;
    color:#0E87BB;
    text-transform:uppercase;
}
.message {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}

.link {
    font-size: 18px;
    text-decoration: none;
    color: #0066cc;
}

.link:hover {
    text-decoration: underline;
}
