main {
  display: flex;
  flex-direction: column;
}

#details-container {
  display: flex;
  gap: 1.7rem;
  width: 100%;
}

#head {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
}

#e-list {
  display: flex;
  flex-direction: column;
  gap: 1.933rem;
  width: 100%;
}

.i-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 38rem;
  width: 100%;
  padding: 0.3rem 0.5rem;
  color: #f1f1f1;
  border-radius: 0.8rem;
  box-shadow: 0 0 1rem 0.02rem #000;
  background-color: #131625;
}

.i-container::before {
  content: "";
  min-width: 1rem;
  height: 1rem;
  margin: 0 0.3rem;
  border-radius: 50%;
  background-color: #f1f1f1;
}

.i-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.09rem;
  padding: 0.4rem;
  border-radius: 50%;
  background-color: #1a1e33;
}

.i-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: solid 0.4rem #111421;
}

.i-title {
  font-size: 1.3rem;
  font-weight: 400;
  text-decoration: none;
  color: #f1f1f1;
  text-wrap: wrap;
  line-height: 1.8rem;
  letter-spacing: 0.167rem;
  word-spacing: 0.1rem;
}

.vl-100 {
  display: block;
}

.ul-100 {
  display: none;
}

#details {
  max-width: calc(100% - 40rem);
}

@media screen and (max-width: 668px) {
  #details-container {
    flex-direction: column;
  }

  #e-list {
    justify-content: center;
  }

  .vl-100 {
    display: none;
  }

  .ul-100 {
    display: block;
  }

  #details {
    max-width: 100%;
  }
}
