.cover {
    display: flex;
    width: 100lvw;
    background-image: url(/img/IMG_9898.jpg);
    aspect-ratio: 3;
    background-repeat: no-repeat;
    background-size:cover;
    background-position: 50% 70%;
}
.cover > span {
    align-self: flex-end;
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-size: 3rem;
    color: white;
    text-shadow: 0.25rem 0.25rem 5px black;
    margin-bottom: 1rem;
}
.action {
    width: 100lvi;
    padding: 0.75svi;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #525252;
    margin-bottom: 2rem;
}
.action > .title {
    margin-bottom: 1rem;
    color: white;
}
.action > input[type="button"] {
    width: 35svw;
    height: 2rem;
    border-style: solid;
    border-width: 1.25px;
    border-color: black;
    border-radius: 0.25rem;
    font-size: 1.25rem;
}
.about {
    width: 100lvi;
    padding-left: 2rem;
    margin-bottom: 2rem;
}
.about > .title {
    color: var(--main-color);
}
.about > .body {
    margin-left: 3rem;
    width: min(max(45rem, 75%), 95%);
}
.contact {
    width: 100lvi;
    padding-left: 2rem;
    margin-bottom: 2rem;
}
.contact > .title {
    color: var(--main-color);
}
.contact > .body {
    margin-left: 3rem;
}
.contact a {
    display: inline-block;
}
.grid {
    display: flex;
    flex-flow: row wrap;
    width: 100lvi;
    margin-bottom: 2rem;
    background-color: #525252;
    padding: 1rem;
    padding-top: 0px;
}
.grid-item {
    flex-basis: 33%;
    flex-grow: 1;
    height: 20rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
}
.grid-item > h1 {
    color: white;
    width: 100%;
    text-align: center;
}
.grid-item > img {
    display: block;
    height: 15.5rem;
    border-radius: 0.5rem;
}
.recent {
    width: 100svi;
    padding-left: 2rem;
}
.recent > .title {
    color: var(--main-color);
}
.recent > .photos {
    margin-top: 1rem;
    display: flex;
    flex-flow: row wrap;
}
.recent > .photos > img {
    flex-grow: 1;
    max-width: 50%;
    object-fit: fill;
    object-position: center;
    height: 15rem;
    display: inline-block;
    margin-right: 0.25rem;
    margin-bottom: 0.25rem;
    border-style: solid;
    border-color: black;
    border-radius: 0.5rem
}