* {
  margin: 0;
  box-sizing: border-box;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

h1 {
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

body {
  background-color: black;
}

header {
  display: flex;
  flex-direction: row;
  min-width: 100vw;
  height: 3rem;
  background-color: darkslategray;
  justify-content: center;
  align-items: center;
}

header h1 {
  font-size: large;
  color: white;
  margin-right: 65%;
}

header a {
  padding: 0 2rem;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

header a:hover {
  color:rgb(107, 105, 221);
}

header u {
  color: rgb(200, 200, 200);
}


/* MAIN */

main {
  display: flex;
  flex-direction: column;
  justify-content: top;
  align-items: center;
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 60vh;
  width: 40%;
  margin-top: 10vh;
  background-color: rgba(212, 212, 212, 0.226);
  backdrop-filter: blur(20px);
  color: white;
  border-radius: 8px;
}

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 2rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 0 2rem;
}

.downloadFileLink {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60%;
  height: 65%;
  background-color: rgba(193, 193, 193, 0.362);
  color: white;
  border: dotted 2px rgb(0, 0, 0);
  border-radius: 8px;
  transition: 0.3s;
}

.downloadFileLink:hover {
  background-color: azure;
  border: solid 2px rgb(108, 108, 224);
}

.downloadFileLink p {
  font-size: large;
  color: rgb(58, 58, 92);
  font-style: normal;
}