* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

header {
  padding: 1rem;
  border-bottom: 1px solid black;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  line-height: 2;
}

h1 {
  text-align: center;  font-size: 2rem;
  font-weight: 500;
  color: black;
}

.content {
  display: flex;
  gap: 24px;
  max-width: 1440px;
  margin: 0px auto;
  padding: 32px 64px 64px 64px;
}

.text-container {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1.375rem;
  font-weight: 300;
}

.image-container {
  width: 50%;
  height: 80vh;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

a {
  color: black;
  font-weight: 500;
}

@media (max-width: 1079px) {

  body {
    line-height: 1.75;
  }

  .content {
    flex-direction: column-reverse;
    margin: 0px;
    padding: 0px;
  }

  h1 {
    font-size: 1.6rem;
  }

  .text-container {
    width: 100%;
    padding: 0px 24px 24px 24px;
    font-size: 1.2rem;
  }

  .image-container {
    height: 40vh;
    width: 100%;
  }
}

@media (max-width: 475px) {

    body {
    line-height: 1.75;
  }

  .content {
    flex-direction: column-reverse;
    margin: 0px;
    padding: 0px;
  }

  h1 {
    font-size: 1.6rem;
  }

  .text-container {
    width: 100%;
    padding: 0px 24px 24px 24px;
    margin: 0px;
    gap: 1rem;
    font-size: 1.1rem;
  }

  .image-container {
    height: 30vh;
    width: 100%;
  }
}