body {
    font-family: 'DIN Condensed', sans-serif;
    color: #f5f5f5;
    background-color: #5AC4F6;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    font-size: 150%; /* Increase text size */
    text-align: justify; /* Justify text */
}

section div {
    color: #484848;
}

main {
    width: 80%;
    max-width: 1200px;
}

header {
    width: 100%;
    max-width: 1200px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer {
    width: 100%;
    max-width: 1200px;
    padding: 1rem;
    text-align: center;
    font-size: 0.7em; /* 30% smaller */
}

.section-title {
    background-color: #3AA4D6;
    padding: 0.5rem;
    width: 100%;
    color: white;
}

.slogan {
    font-size: 1.2em;
    text-align: center;
    margin-top: 0.5rem;
    color: #f5f5f5;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.video-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.video-thumbnail {
    width: 30%; 
    margin: 1rem;
    text-align: center; /* Center the text */
}

.video-thumbnail img {
    width: 100%;
    height: auto;
}

#lang-button-container {
    position: absolute;
    top: 10px;
    right: 10px;
}

#lang-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.5em;
}


/* Responsive design */
@media (max-width: 768px) {
    main {
        width: 90%;
    }

    header, footer {
        padding: 1rem 0.5rem;
    }
}

