* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

html,
body {
  margin: 0px;
  height: 100%;
  background-color: #ffffff;
}

/* a blue color as a generic focus style */
a.button:focus-visible {
  outline: 2px solid #4a90e2;
  outline: -webkit-focus-ring-color auto 5px;
}

a {
  color: #000;
  font-weight: 500;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 150px;
  padding: 60px 0;
  position: relative;
  background-color: #ffffff;
  max-width: 1080px;
  margin: 90px auto;
}

/* Row layout */
.container .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}

.container .row.reverse {
  flex-direction: row-reverse;
}

.container .row.text-only {
  justify-content: center;
}

.container .row.text-only .content {
  flex: 1 1 100%;
  text-align: left;
}

/* Content block */
.container .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex: 1 1 300px;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #000;
}

/* Image block */
.container .image {
  flex: 1 1 300px;
}

.container .image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Headings */
.container h1,
.container h2 {
  margin: 0;
  font-family: "Helvetica Neue-Medium", Helvetica;
  font-weight: 500;
  color: #000;
}

.container h1 {
  font-size: 64px;
  line-height: 72px;
}

.container h2 {
  font-size: 35px;
  line-height: normal;
}

/* Emphasis */
.container .span {
  font-weight: 700;
}

/* Button */
.container .button {
  all: unset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 36px 17px;
  background-color: #f7c600;
  border-radius: 100px;
  box-shadow: 20px 20px 40px rgba(120, 93, 93, 0.2);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.container .button-text {
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #000;
}

@media screen and (max-width: 1024px) {
  .container {
    padding: 25px;
  }
}

/* Responsive */
@media (max-width: 640px) {
  .container {
    margin-top: 10px;
    gap: 50px;
  }

  .container h1 {
    font-size: 40px;
    line-height: 46px;
  }

  .container .row {
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
  }

  .container .row-2 {
    flex-direction: column-reverse;
  }

  .container .button {
    padding: 15px 36px 17px;
  }
}
