:root {
  --color-2: #080158;
  --color-1: #f85e6f;
}

.section {
  background-color: var(--color-2);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: flex;
}

.div-block {
  background-color: var(--color-1);
  border-radius: 100px;
  width: 200px;
  height: 200px;
}

.image, .image-2 {
  width: 300px;
}

.section-2 {
  background-color: var(--color-1);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0%;
}

.cs {
  color: var(--color-1);
  letter-spacing: 5px;
  text-transform: uppercase;
  font-family: Commissioner, sans-serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 45px;
}

.cs._2 {
  opacity: .8;
}

.cs._3 {
  opacity: .6;
}

.cs._4 {
  opacity: .4;
}

.cs._5 {
  opacity: .2;
}

.cs._6 {
  opacity: .05;
}

.cs-2 {
  color: var(--color-2);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: Commissioner, sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 30px;
}

.cs-s {
  color: var(--color-1);
  letter-spacing: 25px;
  text-transform: uppercase;
  padding-left: 25px;
  font-family: Commissioner, sans-serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 50px;
}

@media screen and (max-width: 991px) {
  .cs {
    font-size: 30px;
    line-height: 35px;
  }
}

@media screen and (max-width: 767px) {
  .cs {
    letter-spacing: 3px;
    font-size: 25px;
    line-height: 30px;
  }
}


