.content {
    max-width: 80vw;
    width: 70vw;
    margin-left: 15vw;
}
.head {
    margin-top: 8rem;
}
div.description {
    max-width: 50vw;
    width: 50vw;
    margin-left: 10vw;
}
h1 {
    text-align: center;
    font-size: 10rem;
    margin-bottom: 3rem;
}

img.center {
    display: block;
    height: 0 auto;
    max-width: 50%;
    height: auto;
    margin-left: 26%;
    margin-bottom: 3rem;
}

p {
    font-size: 3.5rem;
    line-height: 5.5rem;
    margin-bottom: 4rem;
    text-align: justify;
}
strong {
    font-family: Montserrat Bold;
}

.section {
    height: 10rem 0 10rem;
}

.section h2 {
    font-size: 8rem;
    margin: 6rem 0 3rem;
    text-align: center;
}
.section p {
    margin-bottom: 4rem;
    font-size: 3rem;
    line-height: 5rem;
}
.section img {
    width: 75%;
    height: auto;
    max-width: 75%;
    display: block;
    margin: 0 auto;
}
.section img#nontransparent {
    width: 70vw;
}

.section br {
    display: block;
    margin-bottom: 3rem;
    content: "";
}

ul.list {
    padding-left: 8rem;
    margin-bottom: 6rem;
}

ul.list li {
    margin-bottom: 1rem;
    font-size: 3rem;
    line-height: 5rem;
    text-indent: 0;
    padding-left: 2rem;
}

/* animation test: */
.section p a {
  position: relative;
  text-decoration: none;
  color: blue;
}

.section p a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transition: transform 0.3s ease;
}

.section p a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

@media screen and (max-width: 788px) {
    .content {
        max-width: 90vw;
        width: 90vw;
        margin-left: 5vw;
    }
    .head {
        margin-top: 4rem;
    }
    div.description {
        max-width: 80vw;
        width: 80vw;
        margin: 5vw;
    }
    h1 {
        font-size: 6rem;
    }
    .section h2 {
        font-size: 5rem;
    }
    img.center {
        margin-left: 10%;
        max-width: 80%;
    }
    p {
        font-size: 2rem;
        line-height: 3.5rem;
    }
    .section p {
        font-size: 2rem;
        line-height: 3.5rem;
    }
    .section br {
        margin-bottom: 1.25rem;
    }
    .section img#nontransparent {
            width: 100%;
            height: auto;
            max-width: 100%;
            display: block;
            margin: 0 auto;
    }

    ul.list {
        padding-left: 4rem;
        margin-bottom: 2rem;
    }

    ul.list li {
        margin-bottom: 1rem;
        font-size: 2rem;
        line-height: 3.5rem;
        text-indent: 0;
        padding-left: 1rem;
    }
}