body {
    background-color: black;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    position: absolute;
}

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

.content {
    text-align: center;
    animation: fadeIn 2s ease-in-out;
}

.welcome {
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 100px;
    margin-top: 250px;
    opacity: 0;
    animation: textAppear 2s ease-in-out forwards;
    animation-delay: 1s;
}

.make {
    color: white;
    margin-top: 50px;
    padding-right: 5px;
    opacity: 0;
    animation: textAppear 2s ease-in-out forwards;
    animation-delay: 2s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes textAppear {
    from { opacity: 0; }
    to { opacity: 1; }
}
