/* General styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #0a0a0a; /* Darker background */
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
}

.center-image {
    max-width: 640px; /* Triple the original 150px size */
    max-height: 360px; /* Triple the original rectangular height */
    margin-bottom: 20px;
    border-radius: 10px; /* Optional */
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

a {
    color: #72CFC5;
    text-decoration: none;
    border: 2px solid #72CFC5;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

a:hover {
    background-color: #50A5AD;
    color: #000;
}

footer {
    margin-top:
}