/* General Styles */
body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #121212;
    color: #ffffff;
    text-align: center;
}

/* Container */
.container {
    max-width: 600px;
    padding: 20px;
}

/* Loader Animation */
.loader {
    margin: 20px auto;
    width: 50px;
    height: 50px;
    border: 5px solid #ffffff;
    border-top: 5px solid #ff9800;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Small Text */
.small-text {
    font-size: 14px;
    margin-top: 10px;
}

/* Contact Info */
.contact a {
    color: #ff9800;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}
