@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

html, body {
  margin: 0px;
  font-family: "Noto", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.1rem;
}

body {
  background-color: #ffffff;
  color: #222222;
}

h1 {
  color: #428bce;
}

img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: #4287f5;
  font-weight: bold;
}

a:focus, a:hover {
  color: #699ff5;
}

.logo {
  background-color: #000000;
  width: 100%;
  display: flex;
  justify-content: center;
  img {
    max-height: 35vh;
  }
}

.sec {
  display: flex;
  width: 100%;
  min-height: 28rem;
}

.sec-img {
  flex-direction: row;
  height: 20rem;
  gap: 12px;
  background-color: #333;
  min-height: 28rem;
}

.sec-text {
  padding-top: 1rem;
  padding-bottom: 3.5rem;
  align-items: center;
  text-align: center;
}

.sec-full {
  background-color: #fff;
  color: #333;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.sec-side {
  flex: 0 0 50%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.sec-side-text {
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px 20px 40px 20px;
}

.two-column-list {
  list-style: none;
  padding-left: 0px;
}

.container {
  display:flex;
  justify-content: center;
  width: 100%;
  h3 {
    max-width: 60%;
    padding-top: 3rem;
  }
}

.profiles {
  width: 800px;
  display: flex;
  justify-content: center;
  gap: 80px;
}

.profile {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.profile-picture {
  border-radius: 50%;
  width: 10em;
  height: 10em;
  object-fit: cover;
}

@media screen and (max-width: 1024px) {
  .sec-ir {
    flex-direction: column-reverse;
  }

  .sec-il {
    flex-direction: column;
  }

  .sec-img {
    flex-direction: column;
    width: 100%;
    height: auto;
    min-height: auto;
    img {
      width: 100%;
    }
  }

  .container {
    h3 {
      max-width: 90%;
    }
  }

  .profiles {
    flex-direction: column;
    gap: 25px;
  }
}

@media (min-width: 768px) {
  .two-column-list {
    display: grid;
    padding-left: 6rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 2rem; /* row-gap column-gap */
    justify-items: left;
  }
}
