/* @import url("https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap"); */
@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600;1,700&display=swap');


* {
  color: white;
  /* font-family: "Arimo", sans-serif; */
  font-family: 'Cormorant', serif;
}

html {
  max-height: 100vh;
  background-color: #203330;
}

/* The Intro Animation  */

.intro {
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: #333333;
  transition: 1s;
}

.logo-header {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  /* font-family: "Arimo", sans-serif; */
  font-family: 'Cormorant', serif;
  font-weight: 700;
}

.logo {
  position: relative;
  display: inline-block;
  bottom: -20px;
  opacity: 0;
  margin-right: 2vw;
}

.logo.active {
  bottom: 0;
  opacity: 1;
  transition: ease-in-out 0.5s;
}

.logo.fade {
  bottom: 150px;
  opacity: 0;
  transition: ease-in-out 0.5s;
}

/* D3 / Visualisation CSS */
.svg-container {
  max-width: 70%;
}

nav {
  padding-top: 1%;
  padding-left: 8%;
}

h2 {
  color: white;
  /* font-family: "Arimo", sans-serif; */
  font-family: 'Cormorant', serif;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 2.3rem;
  margin-bottom: 0;
}

#tagline {
  margin-top: 0;
  font-size: 0.9rem;
}

h4 {
  color: white;
  /* font-family: "Arimo", sans-serif; */
  font-family: 'Cormorant', serif;
  font-weight: 700;
}

.svg-container {
  display: inline-block;
  position: relative;
  width: 75%;
  vertical-align: top;
  overflow: hidden;
}

.svg-content {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

#tooltip {
  padding-top: 150px;
  margin-right: 50px;
  width: 25%;
  display: inline-block;
  font-size: large;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
  /* background-color: lightblue; */
  /* text-align: center; */
}

#tooltip img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* Hide the links on load */
/* .link {
  display: none;
} */

/* .node circle {
  pointer-events: all;
  stroke: #777;
  stroke-width: 1px;
} */

.node-stroke {
  stroke: #333333;
  stroke-width: 3px;
}

#tooltip img {
  max-height: 400px;
  clip-path: circle();
}

.link {
  visibility: hidden;
}

.linkVis {
  visibility: visible;
}

/* Cirlce */

#circle {
  width: 100px;
  height: 100px;
  background: red;
  border-radius: 50%;
}
