@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

body {
  background-color: black;
  color: white;
  margin: 0;

  font-family: "Montserrat", sans-serif;
}

.hero-container {
  display: flex;
  flex-shrink: calc();
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 100px;
  min-height: 500px;
  background-color: rgb(45, 45, 45);
  margin: 0;
  padding: 40px;
}

.hero-container > .hero-image > img {
  width: 100%;
}

.hero-container > .hero-text > h1 {
  color: rgb(179, 13, 51);
  font-weight: 900;
  font-size: 50px;
}

.hero-container > .hero-text {
  flex: 2;
}

.hero-container > .hero-text > div {
  color: white;
  font-weight: 400;
  font-size: 20px;
  overflow: auto;
  margin-bottom: 50px;
}
.hero-container > .hero-text > button {
  border-radius: 50px;
  background-color: #f4511e;
  border: none;
  color: rgb(179, 13, 51);
  text-align: center;
  font-size: 28px;
  padding: 20px;
  width: 100%;
  transition: all 0.5s;
  cursor: pointer;
}

.hero-container > .hero-text > button > span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.hero-container > .hero-text > button > span::after {
  content: "\00bb";
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.hero-container > .hero-text > button:hover span {
  padding-right: 25px;
}

.hero-container > .hero-text > button:hover span:after {
  opacity: 1;
  right: 0;
}
