.index-container {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.main-index-container {
  width: 30%;
  height: 100%;
}

.header-container {
  width: 100%;
}

.header-container .main-header {
  font-size: 4rem;
  margin: 0;
}

.header-container .sub-header {
  font-size: 1.2rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.socials-container {
  display: flex;
  flex-wrap: nowrap;
  height: min-content;
  justify-content: space-between;
  overflow: hidden;
}

.social-container {
  min-width: 32px;
  min-height: 32px;
  max-height: 128px;
  max-width: 128px;
  aspect-ratio: 1/1;
}

.social-container img {
  width: 100%;
  height: 100%;
}

.social-container .invert {
  filter: invert(1);
}

.main-content-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media only screen and (max-width: 1200px) {
  .index-container {
    flex-direction: column;
  }
  .main-index-container {
    width: 100%;
  } 
  .main-content-container {
    flex-direction: column;
    gap: 1rem;
  }
}
