html,
body {
  background-color: black;
  letter-spacing: 5px;
  height: 100%;
  margin: 0;
}

html {
  overflow: hidden;
}

body {
  overflow-y: auto;
  display: grid;
  justify-content: center;
  align-items: center;
}

h1 {
  color: #fff;
  font-family: "Arial", sans-serif;
  font-size: 3rem;
  margin: 0;
  padding: 10px 0;
  font-weight: bold;
  transition: color 0.3s ease;
}

.primary-bg {
  background-color: #ffd700;
}

a {
  font-family: "Arial", sans-serif;
  border: #18cae6 2px solid;
  display: block;
  font-size: 1.8rem;
  line-height: 3rem;
  text-decoration: none;
  color: white;
  transition: border-color 0.3s ease, color 0.3s ease;
}

a:hover {
  border-color: #df740c;
  color: #fff;
}

.center {
  text-align: center;
  transition: margin-top 0.3s ease;
}

.a-left {
  text-align: left;
}

.mv-4 {
  margin: 2em 0;
}

.mh-1 {
  margin: 0 1em;
}

.mb-1 {
  margin-bottom: 25px;
}

.mt-1 {
  margin-top: 1em;
}

.mt-2 {
  margin-top: 20px;
}

.mt-3 {
  margin-top: 40px;
}

.mt-4 {
  margin-top: 60px;
}

.no-select {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome, Opera and Firefox */
}

.ph-2 {
  padding: 0 1em;
}

.d-inblock {
  display: inline-block;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(10vh);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.links-section {
  animation: fade-in 0.5s ease forwards;
}

.a-left {
  text-align: left;
  transition: transform 0.3s ease;
}

.a-left:hover {
  transform: translateX(-5px);
}

.parent-container {
  padding: 3rem 0;
}
