html{
  background-image: url('backgrounds/background5.jpg');
  background-size: cover;
  background-repeat: no-repeat;
}

@font-face {
font-family: 'Dot Gothic';
src: url('fonts/dotgothic16-regular-webfont.woff2') format('woff2'),
      url('fonts/dotgothic16-regular-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Coral Pixels';
src: url('fonts/CoralPixels-Regular.ttf');
font-weight: normal;
font-style: normal;


}
body{
  font-family: 'Dot Gothic';
  color: white
}
#main-container{
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
main{
  min-width: 200px;
  max-width: 30%;
  padding: 0px 4px 4px 4px;
  background-color:black;
  border: 4px ridge lightgray;
  font-size:large;
}
a{
  color: lightgray;
  font-style: italic;
  text-decoration: none;
}
a:hover{
  color: aquamarine;
  text-decoration: underline;
}