:root {
  --primary: #a6bb6d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Signika', sans-serif;
  font-weight: 300;
  line-height: 1.3;
  color: #333;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

hr {
  margin: 3em 0;
  border: none;
  border-top: 1px solid #000;
  opacity: 0.1;
}

.wrapper {
  padding: 20px;
  padding-top: 40px;
  padding-bottom: 80px;
  max-width: 800px;
  margin: 0 auto;
}

.logo {
  display: block;
  width: 80%;
  max-width: 500px;
  margin: 0 auto;
  margin-bottom: 3em;
}

.cols {
  display: flex;
  gap: 40px;
  flex-direction: column;
}

.col {
  flex: 1;
}

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

.resorts {
  margin-top: 2em;
}

.resort__photo {
  display: block;
  width: 100%;
}

.resort__info {
  margin-top: 1em;
  display: flex;
  align-items: center;
  gap: 20px;
}

.resort__logo {
  display: block;
  height: 80px;
}