@import url("font.css");
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  padding: 0;
  margin: 0;
  min-height: 100%;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

h1, h2, h3, h4, h5, h6 {
  padding: 0;
  margin: 0;
}

h1 {
  font-weight: 600;
  font-size: 140px;
  color: rgb(172, 172, 237);
  line-height: 1;
}

.subtitle {
  margin: 10px 0 40px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgb(158, 158, 158);
}

.links {
  display: flex;
  justify-content: center;
  gap: 50px;
  width: 100%;
}
.links a {
  color: rgb(70, 70, 70);
  font-size: 33px;
  text-decoration: none;
  transition: 0.3s;
}
.links a:hover {
  color: rgb(172, 172, 237);
  transform: translateY(-4px) scale(1.06);
}
.links a:active {
  transform: translateY(-1px) scale(1.02);
}
