@import url("https://fonts.googleapis.com/css2?family=PT+Sans&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  font-size: 16px;
}

html {
  font-size: 100%;
  font-family: "PT Sans", sans-serif;
}

body {
  background-color: #150031;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.content {
  width: 90vw;
  text-align: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  transition: all 1s ease;
}

.title {
  color: #ffffff;
  font-size: clamp(8rem, 200vw, 10rem);
}


.subtitle {
  color: #ffffff;
  font-size: clamp(2rem, 50vw, 2.5rem);
}

.logo {
  width: 100%;
}

.wip {
  position: fixed;
  bottom: 2rem;
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.wip {
  left: 2rem;
  z-index: 666;
}

.mail {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1rem;
  color: #150031;
}

.contact {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  cursor: pointer;
}
.contact__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
}

.contact text {
  font-family: "Helvetica Neue", Arial;
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
}

.contact-overlay {
  width: 100%;
  height: 100%;
  background-color: white;
  position: fixed;
  left: 100%;
  top: -100%;
  z-index: 666;
  border-radius: 200rem;
  transition: all 1s ease;
}
.contact-overlay.open {
  left: 0;
  top: 0;
  border-radius: 0;
}

.contact svg {
  width: 150px;
  -webkit-animation-name: rotate;
  -moz-animation-name: rotate;
  -ms-animation-name: rotate;
  -o-animation-name: rotate;
  animation-name: rotate;
  -webkit-animation-duration: 5s;
  -moz-animation-duration: 5s;
  -ms-animation-duration: 5s;
  -o-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0);
  }
}
@-moz-keyframes rotate {
  from {
    -moz-transform: rotate(360deg);
  }
  to {
    -moz-transform: rotate(0);
  }
}
@-ms-keyframes rotate {
  from {
    -ms-transform: rotate(360deg);
  }
  to {
    -ms-transform: rotate(0);
  }
}
@-o-keyframes rotate {
  from {
    -o-transform: rotate(360deg);
  }
  to {
    -o-transform: rotate(0);
  }
}
@keyframes rotate {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0);
  }
}

.cryptedmail:after {
  content: attr(data-name) "@" attr(data-domain) "." attr(data-tld); 
}

.cryptedmail {
  text-decoration: none;
  color: #150031;
  font-size: clamp(2rem, 50vw, 2.5rem);
}