@font-face {
  font-family: Bold; /* set name */
  src: url("/Fonts/cmunrm.ttf"); /* url of the font */
}

@font-face {
  font-family: Regular; /* set name */
  src: url("/Fonts/cmunrm.ttf"); /* url of the font */
}

body {
  margin-top: 10vh;
  padding-left: 10vw;
  padding-right: 10vw;
  font-family: Regular;

  background: url("./noise.png") repeat scroll left top;
}

.top {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: left;
}

h1 {
  font-family: Bold;
  text-align: center;
  width: 100vw;
  padding-bottom: 1rem;
  border-bottom: 1px rgb(237, 237, 237) dashed;
}

a {
  color: #1863A1;
  margin-top: 0.2rem;
}
a:visited {
  color:#1863A1;
}
a:hover {
  color: #1e85d9;
}