body {
  color: white;
  /*background-color : #202020;*/
  background-image: url("/assets/Space-Background-Image-2-3040880933.jpg");
  background-size: cover;
  margin: 0;
  padding: 0;
}
.content {
  background-color: #303030;
  border-style: solid;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 100px auto 100px;
  padding: 2rem;
}
.intro-cont {
    margin: auto;
    text-align : center;
}

li {
    margin: 0;
    padding: 0;
}
.banner {
    background-color: #2B2B2B;
    list-style-type: none;
    margin: 0;
    padding: 0;
    height: 30px;
    border-bottom-style: solid;
    border-width: 2px;
    border-color: #494949;
}
  .banner li{
    display: inline;
  }
.banner-item {
  height: 20px;
  padding: 5px;
  object-fit: contain;
}
.banner-item:hover,
.banner-item:focus-visible {
  background: var(--bg, #AFFC41);
}

.dialogues {
    margin: 100px;

    border-style: solid;
    border-color: white;
    border-width: 2px;
}
.dialogue {
    display: grid;
    grid-template-columns: 150px 1fr;
    background-color: #101010;
}
.dialogue img{
  margin: 5px 25px 5px 25px;
  border-style: solid;
  border-color: white;

  width: 100px;
  height: 100px;
  object-fit: contain;
}
.dialogue-text {
    display: inline-block;
    vertical-align: top;
    border-style: solid;
    border-color: white;
    border-width: 2px;
    margin-right: 5px;
    margin-top: 5px;
    margin-bottom: 5px;
    padding-left: 4px;
    padding-top: 2px;
    background-color: #303030;
    color: white;
}
.dialogue-text p {
  overflow: hidden;
  white-space: nowrap;
  animation: typing 5s steps(138) forwards;
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

