#container {
  /*text-align: center;*/
}

#typetext {
  /*display: inline-block;*/
  /*vertical-align: middle;*/
  color: green;
  letter-spacing: 2px;
}

#cursor {
  display: inline-block;
  vertical-align: middle;
  width: 3px;
  height: 40px;
  margin-right: 5px;
  background-color: green;
  animation: blink 0.75s step-end infinite;
}

@keyframes blink {
  from,
  to {
    background-color: transparent;
  }
  50% {
    background-color: green;
  }
}

.wr img {
  object-fit: cover;
}

#letter-from-ray {
  /* width: 1000px; */
}
#letter-from-ray .wr {
  /* max-width: 100%; */
}
#letter-from-ray .wr div {
  border-radius: 10px;
  padding: 30px;
  /* width: 100%; */
  /* background-color: #efeffa; */
  /* border-color: gray; */
  border: 2px solid rgb(34, 74, 173);
  box-shadow: 1rem 1rem 1rem rgba(34, 74, 173, 0.5);
}

#letter-from-ray .wr h2 {
  text-align: center;
}