/* styles.css */
body {
    font-family: 'Calibri', 'Segoe UI', 'Arial', 'Helvetica', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.header {
    background-color: #3f375f;
    color: white;
    padding: 15px;
    text-align: center;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.logo {
    margin-right: 10px; /* Adjust the spacing between the image and the text */
}

h1 {
    text-align: center;
}

.main {
    padding: 20px;
    text-align: center;
}

.footer {
    background-color: #3f375f;
    color: white;
    padding: 10px;
    text-align: center;
    position: fixed;
    width: 100%;
    bottom: 0;
}

.button {
    background-color: #3f375f;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    text-decoration: none;
}

.button:hover {
    background-color: #45a049;
}

@media (max-width: 600px) {
    .header, .main, .footer {
        padding: 10px;
    }
    .button {
        padding: 8px 16px;
    }
}

