/* Css styling for homepage */

/* The ol' resetteroni */
html {
  box-sizing: border-box;
  font-size: 16px;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

.homepage {
  background-image: url('../images/bg.webp');
  font-family: 'Lato', sans-serif;
}
  
.outer-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 95%;
  max-width: 1440px;
}

.content-description {
  background-color: #979a96;
  width: 80%;
  margin: 0rem 0 2rem;
  padding: 24px;
  border-left: 2px solid #146832;
  border-right: 2px solid #146832;
  border-bottom: 2px solid #146832;
  border-radius: 0 0 2rem 2rem;
  box-shadow: 2px 0px 5px rgba(66, 78,81, 0.85)
}

.content-description h1 {
  font-size: 2rem;
  text-align: center;
}

.content-description h3 {
  margin: 1rem 0 1rem;
  font-size: 1.65rem;
  text-align: center;
}

.content-description h5 {
  margin: 1rem 0 0rem;
  font-size: 1.15rem;
  text-align: center;
}

.content-description p {
  font-size: 1.15rem
}

.content-section {
  background-color: #979a96;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 80%;
  max-width: 1440px;
  margin: 0 0 2rem;
  padding: 24px;
  border: 1px solid #eabc04;
  border-radius: 2rem;
  box-shadow: 2px 2px 3px rgba(66, 78,81, 0.85)
}


.content-section h4{
  margin: 0 0 1rem;
  font-size: 1.5rem;
}

.content-section p {
  margin: 0 0 2rem;
  font-size: 1.25rem
}

.content-item {
  margin: 0 0 1rem;
}

.content-item h6 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
}

.content-item p {
  margin: 0 0 0.5rem
}

.content-item a, .conten-item a:visited {
  color: blue;
  font-size: 1.15rem;
  font-style: italic;
  text-decoration: none;
}


/* Media Queries */
@media screen and (min-width: 600px) {
  .content {
    width: 80%
  }

  .content-description h1 {
    font-size: 3rem;
  }
}