@font-face {
  font-family: 'CenturyGothic';
  src: url("/fonts/centurygothic.ttf") format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'CenturyGothic', sans-serif;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90vw;
  margin-bottom: 40px;
}

header img {
  height: 70px;
}

body {
  background-color: var(--color-grey);
  color: var(--color-darkgreen);
  padding: 20px 50px;
}

@media (max-width: 767px) {
  body {
    padding: 10px 20px;
  }
}

h1 {
  color: var(--color-green);
  font-size: 32px;
  margin-bottom: 2px;
  margin-top: 2px;
}

h2 {
  color: var(--color-darkgreen);
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 4px;
  margin-top: 2px;
  font-weight: 500;
}

.circle-darkgreen {
  border: 4px solid var(--color-green);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

h3 {
  color: var(--color-green);
  font-size: 20px;
  margin-bottom: 4px;
  margin-top: 20px;
  margin-left: 15px;
  font-weight: 500;
}

.no-style-h3 {
  margin: 0;
  padding: 0;
  margin-bottom: 0px;
  margin-top: 0px;
}

h4 {
  color: var(--color-green);
  font-size: 16px;
  margin-bottom: 4px;
  margin-top: 10px;
  margin-left: 20px;
  font-weight: 500;
}

.homepage {
  display : flex;
  max-width: 100vw;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: left;
  gap: 4rem;
}

ul {
  margin-bottom: 20px;
}

li {
  margin-bottom: 12px;
}

.homepage li {
  font-size: 18px;
}

p {
  margin-bottom: 10px;
}

aside {
    border: 1px solid var(--color-lightgreen);
}

aside h3 {
  margin-left: 0px;
}

.hidden {
  diplay: none;
}