* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: anti-aliased;
}

:root {
  --margin: 10px 15px;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  background: black;
  color: white;
  margin: var(--margin);
}

.body-wrapper {
  /* background: red; */
  height: calc(100vh - (2 * var(--margin)));
  /* min-height: 250px; */
  position: relative;
  /* padding-right: 10vw; */
}
.body-text {
  text-align: left;
  font-size: 5.4vw;
  line-height: 1;
  line-height: 1.05;
  letter-spacing: -.04em;
  /* line-height: 1.1;
  letter-spacing: -.05em; */
}
.footer {
  position: fixed;
  bottom: 10px;
  font-size: 2.3vw;
  letter-spacing: -.03em;
}

span {
  display: inline-block;
  /* color: rgb(255, 255, 255); */
  /* transition: transform 750ms;  */
}
.word-wrapper {
  /* background: rgb(0, 0, 111); */
  /* margin-left: 1.3vw; */
  cursor: pointer;
  /* padding-right: 0.8vw; */
  /* padding-right: 0.3em; */
  /* padding: 20px 0  em 20px 0px; */
  /* line-height: 0.3; */
  border-radius: 10px;
  margin-right: 0.3em;
  /* line-height:0.8; */
  /* transition: padding 100ms; */
  outline: 1px dashed transparent;
  /* transition: outline 300ms 0ms linear; */
}
*:not(.clicked) .word-wrapper:not(.freeze):hover{
  outline: 1px dashed #333333;
  /* padding: 20px; */
}
.word-wrapper.freeze{
  cursor:default;
}
.word-wrapper:not(.freeze):hover{
  color: yellow;
}
.word {
  /* background: red; */
  transform: perspective(500px);
  pointer-events: none;
}
.tool-tip{
  /* transform:translateY(-120%); */
  transform:translateY(50%);
}
.tool-tip-wrapper {
  background: white;
  color: black;
  color: #dddddd;
  position: fixed;
  /* top: -20px; */
  left: 0;
  /* padding: 4px 5px; */
  /* border: 1px solid white; */
  /* border-radius: 5px; */
  /* background: black; */
  font-weight: normal;
  font-size: 10px;
  opacity: 0;
  transition: opacity 200ms;
  pointer-events: none;
  background:transparent;
  color: yellow;
}

#logo{
  cursor:pointer;
}

@media screen and (max-width: 1050px) {
  .body-text {
    font-size: 56.7px;
  }
  .footer {
    font-size: 24.15px;
  }
}
@media screen and (max-aspect-ratio: 660/730) {
  .footer {
    position: static;
    margin-top: 20px;
  }
}
@media screen and (max-width: 450px) {
  .body-text {
    font-size: 32px;
  }
  .footer {
    font-size: 20px;
  }
}

