.container {
  width: 100vw;
  height: 100vh;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-content: center;
  align-items: center;
  justify-items: center;
  z-index: 10;
  padding: 0 1rem;
  box-sizing: border-box;
}

.content {
  grid-column: span 12;
  text-align: center;
}

@media (min-width: 768px) {
  .content {
    grid-column: span 6;
    text-align: start;
  }
}

.content p {
  color: #47b9cd;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
}

.errorText {
  margin-bottom: 2rem;
  color: #344054;
  font-weight: 500;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
}

.title {
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: bolder;
  font-size: 2.25rem;
  color: #344054;
  font-family: 'Open Sans', sans-serif;
}

@media (min-width: 768px) {
  .title {
    font-size: 3.75rem;
  }
}

.buttonContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .buttonContainer {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .buttonContainer {
    justify-content: flex-start;
  }
}

.backButton {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #c88a38;
  font-weight: 600;
  border: 1px solid #c88a38;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
}

.backButton:hover,
.backButton:focus {
  background-color: #c88a38;
  color: white;
  outline: none;
}

.homeButton {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 600;
  border: 1px solid #47b9cd;
  border-radius: 0.5rem;
  padding: 0.5rem 2rem;
  background-color: #47b9cd;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
}

.homeButton:hover,
.homeButton:focus {
  background-color: white;
  color: #47b9cd;
  outline: none;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
}

.imageContainer {
  grid-column: span 12;
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .imageContainer {
    grid-column: span 6;
  }
}

.image {
  max-width: 100%;
  height: auto;
  margin-top: 2rem;
  width: 100%;
  height: 500px;
}

@media (min-width: 768px) {
  .image {
    margin-top: 0;
  }
}
