* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Montserrat, Verdana, Geneva, Tahoma, sans-serif;
}

body {
  background: url(./images/bg-image.png) #0b0c22 no-repeat;
  background-size: cover;
  background-blend-mode: lighten;
  color: white;
  line-height: 150%;
  font-size: 14px;
  padding: 30px 0 50px;
}

header,
main {
  max-width: 1240px;
  width: 88%;
  margin: auto;
}

.main {
  margin-top: 4rem;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
}

.main-container {
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
  margin: auto;
}

.main-section {
  margin: 0;
  padding: 1.25rem;
  flex-basis: 100%;
}

.section__text {
  text-align: center;
}

h1 {
  font-size: 36px;
  line-height: 100%;
  font-weight: 800;
}

.button {
  padding: 0.75rem 1.5rem;
  font-size: 12px;
  color: #fad02c;
  border-radius: 30px;
  transition: 150ms ease-out;
  text-decoration: none;
  background-color: transparent;
  border: 1px solid #fad02c;
  font-weight: 600;
  cursor: pointer;
}

.button:hover {
  background-color: #fad02c;
  color: black;
}

.button__primary {
  background-color: #fad02c;
  color: black;
}

.button__primary:hover {
  background-color: transparent;
  color: #fad02c;
}

.hero__text {
  margin: 2rem 0 2.5rem;
  opacity: 0.7;
}

.header__logo {
  height: 32px;
  width: 110px;
  padding-right: 2rem;
}

.hero__image {
  text-align: right;
}

.hero__image img {
  width: 100%;
  max-width: 500px;
}

.hero__cta {
  display: flex;
  justify-content: center;
}

.hero__cta .button {
  width: 85%;
  max-width: 300px;
  text-align: center;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bid-card__wrapper {
  display: flex;
  margin-top: -75px;
}

.bid-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 20px;
  backdrop-filter: blur(7.5px);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
  border-radius: 20px;
  border: 1px solid white;
  margin: auto;
  transform: scale(0.85);
}

.bid-card p {
  margin-bottom: 0;
}

.bid-card__header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.bid-card__header span {
  font-size: 15px;
  font-weight: 600;
}

.bid-card__image {
  border: 1px solid white;
  padding: 1px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-right: 12px;
}

.bid-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bid-card__featured {
  color: #8f8f8f;
  font-size: 12px;
}

.bid-card__amount {
  font-size: 28px;
}

.bid-card__amount span {
  color: #3079bb;
}

.bid-card__date {
  margin-top: 4px;
  font-size: 15px;
}

.bid-card__cta {
  margin-top: 30px;
  padding: 12px 40px !important;
}

.fab {
  display: inline-flex;
  align-items: center;
  position: unset;
  margin-left: auto;
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 50px;
  transition: 150ms linear;
}

.fab:hover {
  background: rgba(0, 0, 0, 0.25);
}

.fab:active,
.fab:link {
  color: white;
  text-decoration: none;
}

@media screen and (min-width: 868px) {
  body {
    font-size: 16px;
    padding: 50px 0;
  }

  .main-container {
    flex-direction: row;
    margin: auto -2rem;
  }

  .section__images {
    flex: 0 0 50%;
  }

  .section__text {
    flex: 0 0 50%;
    text-align: left;
  }

  .main-section {
    padding: 2rem;
  }

  h1 {
    font-size: 65px;
    line-height: 120%;
  }

  .header__logo {
    width: 135px;
    height: 55px;
  }

  .hero__text {
    margin: 2.25rem 0 5rem;
  }

  .hero__image img {
    max-width: 100%;
  }

  .hero__cta {
    justify-content: flex-start;
  }

  .hero__cta .button {
    width: auto;
  }

  .button {
    padding: 1rem 2rem;
  }

  .bid-card {
    margin: 0;
    margin-left: 38%;
    transform: unset;
  }

  .fab {
    background-color: transparent;
  }
}

@media screen and (min-width: 1024px) {
  .section__images {
    flex-basis: 45%;
  }

  .section__text {
    flex-basis: 55%;
  }
}
