@charset "UTF-8";
body {
  background-color: lightgray;

  padding: 2vh 2vw;
}

@font-face {
  font-family: "Segment";
  src: url("../fonts/Segment_Complete/Fonts/OTF/Segment-Regular.otf");
}

@font-face {
  font-family: "Rowan";
  src: url("../fonts/Rowan_Complete/Fonts/OTF/Rowan-Light.otf");
}

h1 {
  font-family: Segment;
  letter-spacing: -6px;
  -webkit-text-stroke: 5px black;
  font-size: 8vh;
  line-height: 7vh;
}

p {
  font-family: Rowan;
  font-weight: 100;
  font-size: 4.5vh;
  line-height: 5vh;
  margin-left: 15vw;
  margin-right: 15vw;
  padding-top: 2vh;
}

.small {
  font-size: 3.5vh;
  line-height: 4vh;
  margin-left: 2vw;
  margin-right: 2vw;
  padding-bottom: 5vh;
}

h2 {
  font-family: Rowan;
  font-weight: bold;
  font-size: 4.5vh;
  line-height: 5vh;
  text-align: center;
  padding-top: 2vh;
  transition: ease-in-out 0.2s;
  margin-top: 12vh;
  margin-bottom: 12vh;
}

h3 {
  font-family: Rowan;
  font-weight: 100;
  font-size: 4.5vh;
  line-height: 5vh;
  text-align: center;
  padding: 2vh;
  margin: 1vh;
  max-width: fit-content;
  border-radius: 50px;
  background-color: white;
  transition: ease-in-out 0.2s;
}

h3:hover {
  cursor: pointer;
  background-color: blueviolet;
  color: white;
}
h4 {
  font-family: Segment;
  letter-spacing: -6px;
  -webkit-text-stroke: 5px black;
  text-align: left;
  font-size: 8vh;
  line-height: 7vh;
  color: blueviolet;
  -webkit-text-stroke: 5px blueviolet;
}

.dates {
  display: flex;
  justify-content: center;
  align-items: center;
}

em {
  font-style: italic;
}

.shiny {
  text-shadow: blueviolet 1px 0 10px;
}

.container {
  background-color: transparent;
  display: flex;
  flex-wrap: wrap;
  width: 80vw;
  margin-top: 2vh;
}
.box-a {
  background-color: white;
  border: dotted black 3px;
  width: 38vw;
  height: 38vh;
  margin-right: 1.5vw;
  margin-top: 1.5vw;
  border-radius: 50px;
  overflow: scroll;
}
.box-b {
  background-color: white;
  border: dotted black 3px;
  border-radius: 50px;
  width: 38vw;
  height: 38vh;
  margin-left: 1.5vw;
  margin-top: 1.5vw;
}

.active,
.h1:hover {
  color: purple;
}

.content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
}
button {
  background-color: transparent;
  width: 100vw;
}
.collapsible {
  background-color: transparent;
  color: black;
  padding-top: 1vh;
  margin-top: 1vh;
  cursor: pointer;
  width: 100%;
  border-top: dotted 3px black;
  border-bottom: none;
  border-left: none;
  border-right: none;
}

a {
  color: blueviolet;
  text-decoration: none;
}
a:hover {
  font-style: italic;
}

img {
  height: 20vh;
  width: auto;
  transition: ease-in-out 0.3s;
  border-radius: 20px;
  margin-top: 5vh;
}
img:hover {
  height: 50vh;
}

.log {
  font-size: 3vh;
  line-height: 4vh;
  text-indent: 2vw;
}

@media (max-width: 800px) {
  h1 {
    font-size: 8vh;
  }
  h2 {
    transform: rotate(10deg);
  }

  p {
    font-size: 3vh;
    line-height: 3vh;
    margin-left: 5vw;
    margin-right: 5vw;
  }

  .small {
    font-size: 2.5vh;
    line-height: 2.5vh;
    padding-bottom: 5vh;
  }
  .container {
    width: 90vw;
    margin-top: 2vh;
  }
  .box-a {
    background-color: white;
    border: dotted black 3px;
    width: 87vw;
    height: 40vh;
    margin-right: 1.5vw;
    margin-top: 1.5vw;
    border-radius: 50px;
    overflow: scroll;
  }
  .box-b {
    background-color: white;
    border: dotted black 3px;
    border-radius: 50px;
    width: 87vw;
    height: 40vh;
    margin-left: 1.5vw;
    margin-top: 1.5vw;
  }
}
