#container {
  grid-template-rows: 130px auto 200px;
}

header {
  grid-row: 1/2;
}

footer {
  grid-row: 3/4;
}

.content-page {
    grid-row: 2/3;
    width: 400px;
    height: auto;
    padding: 30px;
    box-shadow: 0px 0px 15px 0px #c5c4c4;
    border-radius: 20px;
    margin-top: 100px;
    margin-bottom: 200px;
    justify-self: center;
    align-self: center;
 }

.content-page p {
    text-align: justify;
    text-indent: 20px;
    line-height: 1.2
}



.content-page li {
    text-align: justify;
    text-indent: 20px;
    list-style-type: disc;
    list-style-position: inside;  
    line-height: 1.2

}

.content-page ul {
  list-style-type: disc;
  margin-bottom: 10px;
  margin-top: 10px;
}

.title-h1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.title-h2 {
    font-size: 16px;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 10px;
}


@media (max-width: 375px) {
  #container {
    grid-template-rows: 120px auto 160px;
  }

  .content-page {
    width: 100%;
    height: auto;
    padding: 20px;
    margin-top: 40px;
    margin-bottom: 100px;
    box-sizing: border-box;
  }
}


