:root {
  --Very-dark-desaturated-blue: hsl(238, 29%, 16%);
  --Soft-red: hsl(14, 88%, 65%);

  --Soft-violet: hsl(273, 75%, 66%);
  --Soft-blue: hsl(240, 73%, 65%);

  --Very-dark-grayish-blue: hsl(237, 12%, 33%);
  --Dark-grayish-blue: hsl(240, 6%, 50%);

  --Light-grayish-blue: hsl(240, 5%, 91%);

  font-size: 12px;
}

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

body {
  background: linear-gradient(var(--Soft-violet), var(--Soft-blue));
  display: grid;
  place-items: center;
  min-height: 100vh;
}

.container {
  background-color: var(--Light-grayish-blue);
  background: url(images/illustration-woman-online-desktop.svg), url(images/bg-pattern-desktop.svg);
  background-repeat: no-repeat;
  background-position: -10rem 2rem, -52rem -29rem;
  position: relative;
  width: 65rem;
  height: 35rem;
}

.box-img {
  position: absolute;
  top: 15rem; left: -8rem;
}

.left {
  margin: 10% auto;
}

@media (max-width: 767px) {
  .container {
    background-size: 60%;
    background-position: -9rem 6rem, -8.5rem 6rem;
    height: 100%;
  }
  .box-img {
    width: 10rem;
    top: 17rem; left: -6rem;
  }
}

@media (max-width: 575px) {
  .container {
    width: 20rem;
    height: 100%;
    background-image: none;
    position: relative;
    margin: 12rem 0;
  }
  .container::before {
    content: url(images/illustration-woman-online-mobile.svg);
    position: absolute;
    width: 100%;
    top: -9rem;
    left: 0;
    z-index: 3;
  }
  .container::after {
    content: url(images/bg-pattern-mobile.svg);
    position: absolute;
    top: 0;
    left: 0;
  }
  .left {
    margin: 25% auto;
    padding-top: 20%;
  }
  .box-img {
    display: none;
  }
}

/* Bootstrap classes */
.text-primary {
  color: var(--Very-dark-desaturated-blue) !important;
}
.text-secondary {
  color: var(--Very-dark-grayish-blue) !important;
}
.text-info {
  color: var( --Dark-grayish-blue) !important;
}

.rounded {
  border-radius: 1.5rem !important;
}