#presentation {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

#presentation > div {
  max-width: 600px;
}

h1 {
  font-size: xx-large;
}

h2 {
  font-weight: lighter;
  padding: 10px 0;
}

h3 {
  font-weight: lighter;
}

.room-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.room-block img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: cover;
}

.room-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10%;
}

.room-text h2 {
  color: var(--primary);
  text-transform: uppercase;
  font-size: xx-large;
}

.room-text h3 {
  margin: 10px 0;
  font-size: x-large;
}

.room-text span {
    font-style: italic;
}

.room-info {
  padding: 10px 0;
  color: var(--primary);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: large;
}

.room-info div {
  padding-right: 30px;
}

.room-info a {
  display: block;
  padding: 5px 10px;
}

@media screen and (max-width: 992px) {
  .room-block {
    grid-template-columns: 1fr;
  }

  .room-text {
      order: 2;
  }
}

@media screen and (max-width: 576px) {
  .room-info div {
    padding-bottom: 10px;
  }
}
