@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: #064635;
  font-family: 'Roboto', sans-serif;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 2rem;
  overflow: hidden;
}

.content {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  background-color: #386b5d;
}

.info {
  color: #e6edeb;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  align-items: start;
  padding: 1rem;
}

span {
  color: orange;
}

img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

h1 {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
}
h3 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
p {
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .content {
    grid-template-columns: 1.25fr 1fr 1fr;
    height: 500px;
  }

  h1 {
    font-size: 4rem;
  }
  h3 {
    font-size: 2.5rem;
  }
  p {
    font-size: 1.5rem;
  }
}
