.hero {
  display: inline-block;
  position: relative;
  width: 400px;
  min-width: 400px;
  height: 400px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.3);
  margin: 30px;
}
.hero-description-bk {
  background-image: linear-gradient(0deg, #F72F20, #0F0C1D);
  border-radius: 30px;
  position: absolute;
  top: 55%;
  left: -5px;
  height: 65%;
  width: 108%;
  transform: skew(19deg, -9deg);
}


.hero-logo {
  height: 80px;
  width: 80px;
  border-radius: 20px;
  background-color: #fff;
  position: absolute;
  bottom: 28%;
  right: 30px;
  overflow: hidden;
  box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.7);
}

.hero-logo img {
  height: 100%;
}

.hero-description p {
  position: absolute;
  color: #fff;
  font-weight: 900;
  left: 20px;
  bottom: 20%;
}


.hero-date p {
  position: absolute;
  color: #fff;
  left: 20px;
  bottom: 10%;
  font-size: 12px;
  line-height: 20px;
}

body {
  font-family: "Open Sans", sans-serif;
  margin: 0;
  background-color: #eee;
  min-height: 100vh;
}
