@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100&display=swap');



* {
  padding: 0;
  margin: 0;
  vertical-align: baseline;

  border: 0;



}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #22252A;
  font-family: 'Poppins', sans-serif;
  color: white;
  font-weight: bold;
}

main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40rem;
}

main>section:nth-child(1)::after {
  content: '';
  width: 0.2rem;
  right: -1rem;
  top: 0;

  height: 100%;
  background-color: white;
  position: absolute;
}

main>section:nth-child(1) {
  position: relative;
  font-size: 10rem;
  margin-right: 1rem;
  width: 33%
}

main>section:nth-child(2) {
  font-size:1.5rem;
  margin-left: 1rem;
  text-align: justify;
  width: 50%
}

@media only screen and (max-width: 600px) {
  main {
    flex-direction: column;
  }

  main>section:nth-child(1) {
   font-size: 2rem;
    width: 80%;
    text-align: center;
  }

  main>section:nth-child(2) {
    font-size: 1rem;
    text-align: justify;
    margin: 1rem;
    width: 80%;

  }
  main>section:nth-child(1)::after {
    display: none;
  } 
}
b{
  color: black;
  background-color: white;
  margin-right: 1rem;
  text-align: center;
  padding:0 .4rem 0 .4rem  ;
 width: fit-content;
  border-radius: .5rem;
}
