@import url("https://fonts.googleapis.com/css2?family=VT323&display=swap");

:root {
  --blue: #0414a7;
  --light-grey: #e0e2f4;
  --grey: #aaaaaa;
}
* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
}

body {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "VT323", monospace;
  background-color: var(--blue);
}

.container {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-content: center;
}

h1 {
  align-self: center;
  background-color: var(--grey);
  color: var(--light-grey);
  font-size: 2.5rem;
}

p {
  color: var(--light-grey);
  font-size: 2rem;
}
a {
  color: var(--light-grey);
}
.link {
  text-decoration: none;
  padding: 0 9px 2px 8px;
  font-size: 2rem;
}

.link:hover,
.link:focus {
  background-color: var(--grey);
  color: var(--blue);
}
