/* styles.css */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.animated {
    opacity: 0;
    transition: opacity 1200ms, transform 500ms;
    transform: translateY(5rem);
}

.animated__open {
    transform: translateY(0);
    opacity: 1;
}


.hero {
    background-image: url('/background.jpg');
    background-size: cover;
    background-position: center;
    height: 500px;
    color: #fff;
    text-align: justify;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero * {
    text-shadow: 1px 1px 7px rgb(0, 0, 0);
}

.hero__title {
    font-size: 3rem;
    margin: 0;
}

/* Section */
.section {
    padding: 60px 0;
}

.section__title {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.section__content {
    font-size: 1.1rem;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
}

/* Galerie */
.galerie__item {
    width: 30%;
    margin-right: 2.5%;
    float: left;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background-color: #f4f4f4;
    text-align: center;
    padding: 40px 0;
}

.footer__link {
    color: #333;
    margin-right: 15px;
    text-decoration: none;
    padding: 0 10px;
}

.footer__link:hover {
    text-decoration: underline;
}

img {
    object-fit: cover;
    height: 10rem;
    width: 100%;
}