body, html {
    margin: 0;
    font-family: Arial, sans-serif;
}
body {
    background-image: url('images/background.jpg');
    /* background-size: cover; */ /* Cover the entire page */
    /* background-position: center; */ /* Center the background image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: 100% auto;
    background-position: bottom;
    background-color: #9bb1c5;
    padding: 50px 15px 30%;
}


.container {
    width: 80%;
    max-width: 1000px;
    margin: auto;
    /* padding: 50px 15px 300px; */
}
.letter {
    max-width: 600px;
    margin: auto;
}
a {
    color: blue;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1 {
    text-align: center;
    margin-bottom: 0;
    font-family: Georgia, serif;
    color: #2b2a2a;
}
h2 {
    text-align: center;
    margin-bottom: 0;
    font-family: Georgia, serif;
    color: #2b2a2a;
    margin-bottom: 10px;
}

h3 {
    margin-top: 0;
    text-align: center;
    color: #2b2a2a;
}

a:hover {
    text-decoration: underline;
}
.logos {
    display: flex;
    flex-wrap: wrap; /* Allow the items to wrap */
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    align-items: center;
    width: 1000px;
    text-align: center;
}

.logos a {
    flex: 1 1 17%;
}

.logos img {
    width: 150px; /* Adjust the size as needed */
    height: auto;
    /* flex: 0 0 auto; */ /* Prevent logos from stretching */
    max-width: 100%;
}

/* Media query for small screens (e.g., smartphones) */
@media (max-width: 600px) {
    .logos a {
        flex: 1 1 45%;
        text-align: center;
    }
}
