/* Resetting default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    padding: 20px;
    max-width: 600px;
}

.logo {
    max-width: 80%;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    font-size: 1.8em;
    color: #333333;
    margin-bottom: 10px;
}

p {
    font-size: 1em;
    line-height: 1.6;
    color: #555555;
	margin-bottom: 1em;
}

/* Button styling */
.button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #d4af37; /* Gold color */
    color: #000; /* Black text */
    font-size: 1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #b5942d; /* Darker gold on hover */
}

/* Responsive design */
@media (max-width: 768px) {
    h1 {
        font-size: 1.5em;
    }

    p {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }

    h1 {
        font-size: 1.3em;
    }

    p {
        font-size: 0.9em;
    }
}
