body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #000;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: left;
    text-align: center;
    padding: 20px;
}

header {
    display: flex;
	text-align: left;
    flex-direction: column;
    align-items: left;
}

header .logo img {
    width: 100px; /* Placeholder for the logo */
    margin-bottom: 20px;
}

header h1 {
    font-size: 4em;
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
}

main {
    display: flex;
    justify-content: left;
    width: 100%;
    margin: 40px 0;
}

.button-section {
    display: flex;
    gap: 40px;
}

.button {
    position: relative;
    width: 300px;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
}

.button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #ddd;
}

footer {
    margin-top: 40px;
    font-size: 0.8em;
	text-align: left;
    color: #555;
