* {
  font-family: "Montserrat", sans-serif;
}

body {
  background-color: #262626;
}

.back {
  background-color: #121212;
  width: 1110px;
  height: 349px;
  border-radius: 13px;
  margin: 200px auto;
}

.container {
  display: flex;
  align-items: center;
}

.container h2 {
  color: #ffffff;
  width: 426px;
  height: 96px;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -0.4px;
  margin: 0px;
  padding-left: 96px;
  padding-bottom: 24px;
}

.container button {
  background-color: #dc3545;
  border: none;
  color: white;
  padding: 16px 72px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 3px;
  margin-left: 96px;
  border: 2px solid transparent;
  transition: background-color 0.3s ease;
  width: 280px;
  height: 64px;
}

.right-content img {
  margin: 0px;
  padding-left: 158px;
  padding-top: 28px;
}

.container button:hover {
  background-color: white;
  border-color: #dc3545;
  color: #dc3545;
}

@media (max-width: 1024px) {
  .back {
    width: 90%;
    height: auto;
    padding: 40px 20px;
    margin: 50px auto;
  }

  .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .container h2 {
    padding: 0;
    font-size: 32px;
    line-height: 40px;
    width: auto;
  }

  .container button {
    margin: 24px 0 0 0;
    width: 70%;
    height: 56px;
  }

  .right-content img {
    padding: 0;
    margin-top: 32px;
    width: 80%;
    height: auto;
  }
}

@media (max-width: 600px) {
  .container h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .container button {
    font-size: 14px;
    width: 90%;
    height: 48px;
  }

  .right-content img {
    width: 100%;
  }
}
