/* Modern Grid/Flexbox Layout */
body {
    margin: 0;
    min-height: 100vh;
    display: grid;
    place-items: center;
}

main {
    display: grid;
    gap: 2rem;
    width: min(90vw, 60rem);
    padding: max(2rem, 5vw);
    padding-bottom: max(3rem, 8vh);
}

h1 {
    font-size: clamp(2rem, 6vw, 4rem);
    margin: 0;
    justify-self: start;
}

section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

section p {
    max-width: min(100%, 35em);
    text-align: justify;
    line-height: 1.6;
    margin: 0;
}

.content-img {
    align-self: flex-start;
    width: min(100%, 400px);
}

.content-img img {
    width: 100%;
    height: auto;
    display: block;
}

.content-text a {
    line-height: 1.5;
    color: rgb(208, 83, 88);
    font-weight: normal;
    text-decoration: none;
}