@font-face {
  font-family: 'Alcatraz';
  src: url(../fonts/Alcatraz.ttf);
}

@font-face {
  font-family: 'Montserrat';
  src: url(../fonts/Montserrat.ttf);
}

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  font-style: normal;
  color: inherit;
}

body {
  background-color: black;
  font-family: 'Montserrat', sans-serif;
  color: white;
  font-size: 18px;
  line-height: 1.6;
}

a:hover {
  color: #A3A4A8;
  text-decoration: underline;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid #474A51;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a:hover {
  text-decoration: none;
  background-color: #474A51;
  border-radius: 5px 5px 0 0;
}

.logo {
  margin-left: 2rem;
}

.navbar {
  display: flex;
  justify-content: center;
}

.navbar a {
  display: inline-block;
  padding: 2rem;
}

main {
  padding: 5vh 10vw 0 10vw;
}

.container {
  background-color: #474A51;
  opacity: 0.98;
  padding: 5vh 10vw;
  border-radius: 5px 5px 0 0;
}

h1 {
  font-family: 'Alcatraz', sans-serif;
}

footer {
  border-top: 1px solid #474A51;
  padding: 2rem;
  font-size: 0.8rem;
  text-align: center;
}

@media screen and (max-width: 600px) {
  main {
    padding: 5vh 0 0 0;
  }

  .container {
    padding: 5vh 3vw 5vh 3vw;
  }
}