main {
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  font-family: 'Roboto Slab', serif;
  
}

h1 {
   font-weight: normal;
   font-style: normal; 
   font-size: 42pt;
}

h2{
  font-size: 2em;
}

h3 {
  font-size: 1.2em;
  margin-block-start: 1em;
  margin-block-end: 1em;
}


.typewriter{
  font-family: "courier-std", monospace;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6em;
  width: auto;
}

.typewriter strong{
  /* text-decoration: underline; */
  font-size: 1.25em;
  font-weight: 1000;
  color: #1e7979;
  text-decoration: none;
}



body{
  font-size: 17px;
  line-height: 24px;
  font-weight: 400;

  color-scheme: dark light;
  color:#07384b;
  background-color: #d0dbdf; 

  /* background-image: url("../images/gradient.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 100% 100%; */

  /* background-image: url("../images/overlay.png"), linear-gradient(60deg, #001b26 15%, #0b455b 85%); */

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}


#content {
  display:grid;
  grid-template-columns: 60% 40%;
}


a {
  font-weight: 500;
  color: #0f7374;
  text-decoration: none;
  border-bottom: dotted 1px;
}

a:hover {
  color: #238f91;
}

strong, em{
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-decoration-color: #0f7374;
  text-decoration-thickness: 4px;
  color: inherit;
}

strong{
  font-weight: normal;
}

#sections {

  padding-top:25px;
  padding-left:15px;
  padding-right:15px;
}



.card{
  color-scheme: light dark;
  color:#242424;
  padding-top: 20px;
}

#vis {
  top:0;
  position:sticky;
  box-sizing: border-box;
  height:100vh;
  min-width:600px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

}

section{
  height: 95vh;
}

#question {
  padding-top: 30px;
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
  font-size: 23px;
  font-weight: bold;
  line-height: 1.5;
}

div.legend{
  padding-top: 20px;
  padding-bottom: 40px;
}

.yAxis .tick text{
  font-size: 15.5px;
  font-family: 'Urbanist', sans-serif;
}

.xAxis .tick text{
  font-size: 12px;
  font-family: 'Urbanist', sans-serif;
}

circle{
  transition: opacity ease-in-out .15s;
}

circle.ingre-chart, .mp-background circle, circle.guessing-game{
  cursor: pointer;
}

.mp-background circle:hover, circle.guessing-game:hover{
  opacity: .5;
}

.overrideHover{
  opacity: 1 !important;
}

#info p, #ingre-info{
  opacity: 0;
}

.down{
  opacity: 0.5;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5%;
  cursor: pointer;
  transition: opacity ease-in-out .15s;
  animation: jumpInfinite 1.5s infinite;
}

.down:hover{
  opacity: 0.3;
}

/* Animation */
@keyframes jumpInfinite {
  0% {
    margin-top: 5%;
  }
  50% {
    margin-top: 6%;
  }
  100% {
    margin-top: 5%;
  }
}

