:root {
  --white: white;
  --black: black;
}

body {
  color: #333;
  font-family: articulat-cf, sans-serif;
  font-size: 14px;
  line-height: 20px;
  overflow: hidden;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: erotica-big, sans-serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 44px;
}

.question-mark {
  color: #fff;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  margin-top: 10px;
  margin-right: 10px;
  font-family: articulat-cf, sans-serif;
  font-size: 20px;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.copyright {
  font-size: 10px;
  line-height: 1;
}

.heading {
  text-align: center;
  cursor: pointer;
  flex-flow: column;
  flex: 0 auto;
  justify-content: center;
  align-self: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20svw;
  line-height: 1.05;
  display: flex;
}

.about {
  background-color: #fff;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  height: 100vh;
  padding-top: 5vh;
  padding-bottom: 5vh;
  display: flex;
}

.footer {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 3svh;
  left: 0%;
  right: 0%;
}

.heading-container {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.overlay {
  z-index: 999;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: rgba(255, 255, 255, .7);
  width: 100svw;
  height: 100svh;
  display: none;
  position: absolute;
  overflow: hidden;
}

.body {
  overflow: hidden;
}

.text-block-2 {
  background-color: #000;
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  display: flex;
}

@media screen and (max-width: 767px) {
  .question-mark {
    z-index: 1;
    margin-top: 15px;
    margin-right: 15px;
  }
}

@media screen and (max-width: 479px) {
  .footer {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .image {
    width: auto;
    height: 25px;
  }
}


