:root {
    --primary-color: #FFA500;
    --background-color: #ffffff;
    --text-light: #5f5f5f;
    --text-muted: #5f5f5f;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--primary-color);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 95vh;
    text-align: center;
    padding: 20px;
}
span{
	margin-left: 20px;
}

.logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 30px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.footer {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: auto;
    margin-left: 1%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }

    .logo {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.6rem;
    }

    p {
        font-size: 0.95rem;
    }

    .logo {
        max-width: 120px;
    }
}