body,
html {
  margin: 0;
  padding: 0;
  font-family: "Urbanist", sans-serif;
  color: #4b4b4b;
}

.header {
  background-color: #3e3a96;
  color: white;
  height: 50vh;
  position: relative;
  background: url(./header.png) no-repeat center center;
  background-size: cover;
  display: grid;
  grid-template-columns: 1fr 1fr;

  @media screen and (max-width: 600px) {
    grid-template-columns: 1fr;
  }
}

.header-project {
}

.header-section-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
}
.header-project-logo,
.header-project-sub {
  padding: 0;
  margin: 0;
}

.header-project-logo {
  font-size: 9rem;
  line-height: 7rem;
  font-weight: 900;
}

.header-project-sub {
  font-size: 3.15rem;
  line-height: 3.5rem;
  font-weight: 300;
}

.header-project-logo-text {
  line-height: 0.5rem;
  font-size: 1rem;
  margin-top: 17px;
}

.header-section-desc {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
}

.header-section-short {
  font-weight: 300;
  width: 30vw;
  font-size: 1.5rem;
  text-align: center;
}

.header-section-link {
  padding: 10px 20px;
  border-radius: 4px;
  color: #3e3a96;
  background-color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
  margin-top: 22px;
}

.feature-list-section-header {
  padding: 35px 0;
  font-weight: 400;
  text-align: center;
  font-size: 2rem;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(345px, max-content));
  gap: 20px;
  justify-content: center;

  @media screen and (max-width: 1200px) {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.feature-list-item {
  border: 1px solid rgba(110, 103, 243, 0.1);
  border-radius: 8px;
  box-shadow: 2px 2px 7px 1px rgba(110, 103, 243, 0.1);
  padding: 20px 20px;
  max-width: 345px;
  min-width: 345px;
}

.feature-list-item-label {
  display: flex;
  gap: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.feature-list-item-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  margin-bottom: 16px;
}

.feature-list-item-description {
  margin-bottom: 16px;
  font-weight: 500;
}

.connection-list-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  padding: 35px 0;
}

footer {
  background-color: #3e3a96;
  color: white;
  text-align: center;
  width: 100%;
  padding: 5px 0;
}
