@charset "utf8";
@import url(https://fonts.googleapis.com/css?family=Oswald:200,300,400,500,600,700&display=swap);

@media only screen and (max-width: 767px) {
  /* Your mobile-specific CSS rules go here */
  .letter {
    width: 84vw !important;
    height: 700px !important;
  }
}
.letter {
  background-color: #e6e3d6;
  position: absolute;
  top: 40px;
  width: 900px;
  height: 650px;
  z-index: 1000;
  z-index: -999;
  border-radius: 3px;
  box-shadow: -5px -5px 100px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 1s ease;
  color: #003049;
}
.fade {
  transition: opacity 1s ease;
}

.fade.show {
  opacity: 1; /* make element visible */
}
/* .letter:before {
    content: "";
    position: absolute;
    border: 3px solid #003049;
    border-style: dotted;
    bottom: 12px;
    right: 12px;
    left: 12px;
    top: 12px;
  } */
:root {
  /* font-size: calc(1vw + 1vh); */
  --bgColor: #2c3539;
  --mainColor: white;
  --linkColor: orange;
}

*,
*:before,
*:after {
  margin: 0;
  padding: 0;
}

/* body {
	display: flex;
  flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
  font: 300 16px "Oswald", sans-serif;
  color: var(--mainColor);
	} */

h2 {
  font-size: 2.5rem;
  font-family: Helvetica;
  color: var(--bgColor);
  text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white,
    1px 1px 0 white;
  margin-bottom: 3rem;
}
.header {
  position: absolute;
  top: 30px;
  left: 38px;
}
.timeline {
  position: relative;
  display: grid;
  gap: 20px;
  max-width: 80%;
  list-style-type: none;
  margin-left: 40px;
  margin-top: 100px;
}

.timeline .timeline__line {
  position: absolute;
  top: 0;
  left: 3.51rem;
  width: 0.25rem;
  height: 100%;
  background: var(--mainColor);
}

.timeline .timeline__item .info {
  display: grid;
  grid-template-columns: repeat(3, auto) 1fr;
  align-items: center;
  gap: 0.25rem;
}

.timeline .timeline__item .info a {
  text-decoration: none;
  color: var(--linkColor);
  font: 300 16px "Oswald", sans-serif;
}

.timeline .timeline__item .info .dot {
  position: relative;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  margin-left: 0.3rem;
  margin-right: 0.3rem;
}

.timeline .timeline__item .info .dot::before {
  position: absolute;
  content: "";
  top: -0.07rem;
  left: -0.07rem;
  right: -0.07rem;
  bottom: -0.07rem;
  background-color: var(--bgColor);
  border-radius: inherit;
}

.timeline .timeline__item .info .dot::after {
  position: absolute;
  content: "";
  top: 0.15rem;
  left: 0.13rem;
  width: 0.2rem;
  height: 0.2rem;
  border: 0.25rem solid var(--mainColor);
  border-radius: inherit;
}

.timeline .timeline__item .info .time {
  margin-right: 0.1rem;
  margin-left: 0rem;
}

.timeline .timeline__item .content {
  margin: 1rem 0 0 4.5rem;
}
