/* .slider .list .item:nth-child(1) {
  width: 100vw;

  align-self: center;

} */

.container {
  position: relative;
  width: 100dvw;
  height: 90dvh;
  /* background-color: green; */
  display: flex;
  align-items: center;
  justify-content: center;

  /* border-style: dashed; */
}

.background-letters {
  font-family: tan-pearl;
  font-size: 15rem;

  position: absolute;

  display: flex;
  align-items: center;
  justify-content: center;

  color: rgb(0, 0, 0);

  gap: 70px;
  /* white-space: nowrap; */

  /* background-color: blue; */
}

.bgl {
  margin-top: 50px;
  padding-left: 20px;
  /* padding: 30px; replaced by gap*/
  /* background-color: red; */
}

.vertical-line {
  width: 4px;
  height: 400px;
  background-color: black;
  position: absolute;
}

.name {
  font-size: 2.5rem;
  position: absolute;

  color: black;
  white-space: nowrap;
  background-color: #ecf0f2;

  letter-spacing: 10px;
  padding: 10px; /*1.5vh*/
}

.for-i {
  letter-spacing: normal;
}

/*media queries*/
/*media queries*/
/*media queries*/
/*media queries*/

@media only screen and (max-width: 1441px) {
}

@media only screen and (max-width: 1050px) {
  /* .info{
      margin-top: 4rem;
    } */
  .container {
    transform: scale(0.8);
  }
}

/* Tablet */

@media only screen and (max-width: 769px) {
  .container {
    transform: scale(0.5);
  }
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 426px) {
  .container {
    transform: scale(0.4);
  }
}

@media screen and (max-height: 350px) {
  .container {
    transform: scale(0.5);
  }
}

/*dark mode*/
@media (prefers-color-scheme: dark) {
  body {
    background-color: #121212;
    color: white;
  }
  .background-letters {
    color: white;
  }
  .name {
    color: white;
    background-color: #121212;
  }
  .vertical-line {
    background-color: #ffffff;
  }
}
