body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
}

h1 {
  font-size: 2.5em;
}

p {
  font-size: 1em;
}

a {
  color: #b89c62;
}

.container {
  display: flex;
}

.col-text {
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.col-image {
  background-image: url("./images/cover.jpeg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100vh;
}

@media (max-width: 900px) {
  .col-text {
    width: 55%;
  }
}

@media (max-width: 750px) {
  .col-text {
    position: absolute;
    background-color: white;
    width: 80%;
    border-radius: 2px;
  }
}

@media (max-width: 300px) {
  .col-text {
    position: absolute;
    background-color: white;
    width: 100%;
    border-radius: 2px;
    padding: 0px;
  }

  .col-text h1,
  .col-text p {
    padding: 5px 10px;
  }
}
