/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1e1e2e;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    text-align: center;
    padding: 20px 10px;
    background-color: #2b2b3b;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

header h1 {
    font-size: 2.5em;
    margin: 0;
}

header p {
    font-size: 1.2em;
    margin: 5px 0 0;
}

/* Main Section */
.main-content {
    max-width: 800px;
    padding: 20px;
    text-align: center;
}

.description {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.button {
    text-decoration: none;
    padding: 10px 20px;
    background-color: #646cff;
    color: #ffffff;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #4b50d8;
}

footer {
    margin-top: 30px;
    font-size: 0.9em;
    color: #cccccc;
}

.info-section {
    max-width: 900px;
    margin-top: 20px;
    text-align: left;
    font-size: 1em;
    line-height: 1.6;
}

.info-section h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #ffffff;
}

.info-section img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
