@charset "UTF-8";

#content {
  max-width: none;
}

@media only screen and (max-width: 980px) {
  #content {
    width: 100%;
  }
}

#cordWrap {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  border: 1px solid var(--main-color-1);
  border-width: 5px 1px 1px 1px;
  border-radius: 21px;
  padding: 2rem 1rem;
  background-color: var(--mono-color-9);
}

.card,
#cordWrap:after {
  flex-basis: calc((100% - 2rem) / 2);
  min-width: 426px;
  flex-grow: 1;
}

#cordWrap:after {
  content: "";
}

.nameWrap {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
}

.nameWrap .img {
  width: 180px;
}

.nameWrap .nameTxt {
  padding-bottom: 1rem;
}

.nameWrap .nameTxt .post {
  font-size: 1.2rem;
}

.nameWrap .nameTxt .name {
  font-size: 2.3rem;
}

.txtWrap {
  flex-grow: 1;
}

.txtWrap>div:not(.message) {
  margin-bottom: 1.5rem;
  padding: 0 0.8rem;
}

#cordWrap .txtWrap .title {
  font-weight: bold;
  font-size: 1.05rem;
  margin-bottom: 7px;
  display: inline-block;
  background: linear-gradient(transparent 64%, rgba(255, 250, 125, 0.86) 0%);
}

.message {
  background-color: var(--main-color-10);
  border-radius: 14px;
  padding: 0.8rem;
}

@media only screen and (max-width: 980px) {
  .card {
    display: flex;
    gap: 2rem;
  }

  .nameWrap {
    flex-direction: column;
    justify-content: start;
  }

  .nameWrap .nameTxt .name {
    font-size: 2rem;
  }
}

@media only screen and (max-width: 799px) {
  .card {
    display: block;
  }

  .nameWrap {
    flex-direction: row;
    justify-content: center;
  }

  .nameWrap .img {
    width: 170px;
  }

  .nameWrap .nameTxt .post {
    font-size: 1rem;
  }

  .nameWrap .nameTxt .name {
    font-size: 1.5rem;
  }
}

@media only screen and (max-width: 559px) {
  #cordWrap {
    display: block;
  }

  .card {
    padding: 1.5rem 0.5rem;
    margin-bottom: 2rem;
    min-width: auto;
  }

  .nameWrap {
    gap: 1rem;
    flex-direction: column;
    margin-bottom: 1rem;
  }

  #cordWrap .txtWrap .title {
    font-size: 1rem;
  }

  .txtWrap>div:not(.message) {
    margin-bottom: 1rem;
  }
}