@import url('https://fonts.googleapis.com/css?family=Merriweather&display=swap');
@import url('https://fonts.googleapis.com/css?family=Kosugi&display=swap');
@import url('https://fonts.googleapis.com/css?family=Domine:400,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;1,100&display=swap');

* {
  font-family: "Merriweather";
}

text {
  font-size: small;
  font-style: italic;
}

body {
  background-color: rgb(245, 244, 241);
  overflow-x: hidden;
}

#sections {
  position: relative;
  display: inline-block;
  width: 400px;
  top: 60px;
  z-index: 90;
  margin-right: 50px;
}

.categoryLegend {
  font-family: "Domine";
}

.step {
  margin-bottom: 100px;
  height: 700px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 1.4em;
  text-align: justify;
  /* display: flex;
    flex-direction: column;
    justify-content: space-around; */
}

h1,
h2 {
  font-weight: 700;
  text-align: left;
  line-height: 32px;
}

h1 {
  font-size: 35px;
}

strong {
  color: rgb(245, 155, 155);
}

#graphic {
  margin: auto;
  width: 1500px;
  flex-direction: row;
  align-items: top;
  justify-content: space-around;
}

#vis {
  display: inline-block;
  position: fixed;
  top: 0px;
  z-index: 1;
  margin-left: 0;
  height: 1000px;
  width: 1000px;
}

.tick line {
  stroke: 'red'
}

#tooltip {
  position: absolute;
  display: none;
  background: rgba(0, 0, 0, .7);
  border-radius: 3px;
  box-shadow: -3px 3px 15px #939393;
  color: white;
  padding: 6px;
  font-family: "Merriweather";
  font-size: 1.1em;
  max-width: 400px;
  z-index: 100;
}

svg circle:hover {
  cursor: pointer;
}

.swatch {
  fill: #939393;
}

.sizeLegend2 {
  opacity: 0.7
}

img {
  display: none;
}

section {
  padding-left: 10%;
}

html {
  scroll-behavior: smooth;
}

.desc {
  font-size: 10px;
  font-style: italic;
  font-weight: 100;
}