body {
  background-image: url(dithering.png);
  background-size: 100%;
}

.main {
  width: 750px;
  background: rgba( 0,0,0, 0.5 );
  box-shadow: 0 8px 32px 0 rgba( 0,0,0, 1 );
  backdrop-filter: blur( 2px );
  border-radius: 10px;
  border: 1px solid rgba( 255, 255, 255, 0.18 );
  margin: auto;
  margin-top: 50px;
  margin-bottom: 50px;
  animation: spin 2s;
}

.banner {
  width: 750px;
  border-radius: 10px 10px 0px 0px;
}

.buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center; /* centers items horizontally */
    align-items: center; /* centers items vertically */
}

.grid-item {
  max-width: 100%;
  height: auto;
  margin: auto;
  display: block;
}

.footertext {
  font-size: 20px;
}

.centered-link {
  text-align: center;
}

.links {
  display: grid;
  grid-template-columns: auto auto auto auto auto auto auto;
  padding: 10px;
  gap: 5px;
}

.link {
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  font-style: normal;
  text-align: center;
  border: 1px solid rgba( 255, 255, 255, 0.18 );
  background: rgba( 0,0,0, 0.25 );
  border-radius: 5px;
  font-size: 15px;
}

p {
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  font-style: normal;
  text-align: center;
  font-size: 15px;
  color: white;
}

.pt2 {
  font-size: 18px;
}

.email {
  font-style: bold;
}

.type2 {
  margin: 30px;
  margin-left: auto;
  margin-right: auto;
  width: 600px;
}

a {
  text-decoration: none;
  color: white;
}

.tagline {
  margin-top: 10px;
  margin-bottom: 5px;
  text-align: center;
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  font-style: italic;
  color: white;
  font-size: 25px;
  filter: drop-shadow(0px 0px 5px white);
}

.footer {
  animation: spin 2s;
}

@keyframes spin {
  0% {transform: translate(0px, 1000px);}
  100% {transform: translate(0px,0px);}
}

h1 {
    margin-top: 10px;
    margin-bottom: 5px;
    text-align: center;
    font-family: "Ubuntu", sans-serif;
    font-weight: 300;
    font-style: italic;
    color: white;
    font-size: 40px;
    filter: drop-shadow(0px 0px 5px white);
}