:root {
  --hexagon-size: 600px;
}

body {
  margin: 0;
  font-family: sans-serif;
  font-size: 1rem;
}

#about-section {
  padding: 2vh 5vw;
  max-width: 2000px;
  margin: 0 auto;
}

article {
  font-size: larger;
  padding: 1vh 5vw;
}

#articles-container {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: center;
}

#head-container {
  background-image: url('../images/sediu.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 10vw;
}

.section-title {
  color: #bc2020;
  font-size: 2rem;
  font-weight: 1000;
  padding: 1vh 5vw;
}

footer {
  color: darkgrey;
  margin-top: 4vh;
  font-size: 0.7rem;
  padding: 2vh 5vw;
  text-align: center;
}

#asii-anchor {
  all: unset;
  cursor: pointer;
  background-color: white;
  height: 5rem;
  width: 5rem;
  border-bottom-right-radius: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

#asii-anchor-logo {
  width: 3.5rem;
  margin: 0.5rem;
}

#hexagon {
  width: var(--hexagon-size);
  cursor: pointer;
}

@media (max-width: 1800px) {
  :root {
    --hexagon-size: 250px;
  }
}

@media (max-width: 900px) {
  #head-container {
    height: 60vh;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  :root {
    --hexagon-size: 200px;
  }

  #asii-anchor {
    height: 4rem;
    width: 4rem;
  }

  #asii-anchor-logo {
    width: 3rem;
    margin-left: 0rem;
  }

  article {
    font-size: medium;
    padding: 1vh 5vw;
  }
}
