body {
    background-color: #fff;
    margin: 0;
}

.hero {
    background-image: url("/img/hero.avif");
    background-position: 50%;
    background-size: cover;
    height: 200px;
    width: 100%;
    mask-image: linear-gradient(180deg,rgba(255, 255, 255, 1) 65%, rgba(255,255,255, 0.3) 85%, rgba(255, 255, 255, 0) 100%);
}

header {
    padding: 0 1.3rem;
    flex-direction: column;
}

.title, header, address {
    display: flex;
    align-items: center;
}

.title {
    flex: 1;
}

address {
    font-size: 1.3rem;
    flex-direction: column;
    gap: 0.7rem;
}

.embla {
    overflow: hidden;
    text-align: center;
    margin-top: 1.5rem;
}
.embla__container {
    display: flex;
}
.embla__slide {
    flex: 0 0 100%;
    min-width: 0;
}

.embla img {
    width: 100%;
}

@media (min-width: 600px) {
    .hero {
	height: 250px;
    }

    header {
	flex-direction: row;
    }

    address {
	align-items: flex-end;
    }
}

@media (min-width: 1024px) {
    header {
	padding: 0 2.5rem;
	width: 70%;
	max-width: 750px;
	justify-self: center;
    }

    .hero {
	height: 350px;
    }

    .embla img {
	width: 75%;
    }
}
