html,
body {
  height: 100%;
  margin: 0;
  overflow: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: whitesmoke;
  text-shadow: 2px 2px 2px rgba(31, 42, 23, 0.388);
}

.container {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg,
      #db8734,
      #2ecc71);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.container::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg,
      rgba(255, 255, 255, 0.1) 1px,
      transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

a {
  color: rgb(124, 255, 172);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: rgb(69, 208, 120);
}

a:active {
  color: rgb(69, 208, 120);
}