.monomi-content {
  position: relative;
}

.left-monomi-thanks {
  width: 50vw;
  height: 100vh;
  background-color: #FFCD00;
  position: fixed;
}

.left-monomi-thanks img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 336px;
  height: 444px;
}

.right-monomi-text {
  width: 50vw;
  height: auto;
  float: right;
  overflow: hidden;
}

.right-monomi-text article {
  width: 85%;
  margin-top: 3rem;
  margin: 8rem auto;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.monomi-main-text {
  width: 100%;
  font-size: 35px;
  color: #E62143;
  line-height: 45px;
}

.monomi-main-text span {
  width: 3px;
  height: 10px;
  background-color: #FFCD00;
}

.monomi-secundary-text {
  width: 100%;
  font-size: 25px;
  font-weight: 200;
  color: #E62143;
  line-height: 40px;
}

.monomi-team {
  width: 142px;
  height: 76px;
  margin-top: 2rem;
}

footer {
  width: 100%;
  height: 65px;
  background-color: #E62143;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  padding: 0 2rem;
  box-sizing: border-box;
}

footer p {
  color: white;
  font-size: 16px;
}

footer a {
  width: 300px;
  height: 40px;
  background-color: #E62143;
  border: 2px solid white;
  text-align: center;
  font-family: 16px;
  line-height: 40px;
  text-decoration: none;
  color: white;
}

footer a:hover{
  cursor: pointer;
}

@media (min-width: 320px) and (max-width: 767px) {
  .left-monomi-thanks {
    width: 100%;
    position: relative;
  }

  .right-monomi-text {
    width: 100%;
  }

  .left-monomi-thanks img {
    width: 260px;
    height: 344px;
  }

  .monomi-main-text {
    font-size: 25px;
  }

  .monomi-secundary-text {
    font-size: 16px;
  }

  footer {
    padding: 0 1rem;
  }

  footer p {
    font-size: 14px;
    margin-right: 5px;
  }

  footer a {
    margin-left: 5px;
  }
}