@font-face {
  font-family: "Roboto";
  src: url("assets/fonts/Roboto-Black.woff2") format("woff2"),
       url("assets/fonts/Roboto-Black.woff") format("woff"),
       url("assets/fonts/Roboto-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("assets/fonts/Roboto-Regular.woff2") format("woff2"),
       url("assets/fonts/Roboto-Regular.woff") format("woff"),
       url("assets/fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@keyframes pulse {
  50% { transform: scale(1.01); }
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #000;
  color: #fff;
}

main {
  height: 100svh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  text-decoration: none;
  color: #FFF;
  word-break: break-word;
  transition: color 0.4s ease;
  animation: pulse 0.8s ease-in-out infinite;
  cursor: pointer;
}

.content:hover {
  color: #FDFD96;
}

.title {
  font-size: 2rem;
  font-weight: 900;
}

.email {
  font-size: 1rem;
  font-weight: 400;
}
