body {
  margin: 0;
  padding: 0;
  font-family: "Cardo", sans-serif;
  background-size: cover;
}

main {
  margin: 7em 0 3em 0;
  padding: 0 3em;
  width: 100%;
}

main {
  animation: fadeIn 0.5s ease-in;
}

a {
  text-decoration: underline;
  color: #000;
}

a:hover {
  text-decoration: none;
}

header {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
  color: #fff;
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  z-index: 2;
  animation: fadeIn 0.5s ease-in;
}

#title {
  font-family: "Bodoni Moda", sans-serif;
  font-weight: lighter;
}

#subtitle {
  font-size: 2em;
}

h1 {
  font-size: 2em;
  line-height: 0.75em;
}

h2 {
  padding: 0;
  margin: 0;
  font-size: 1.5em;
}

.btn {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

button.btn i.material-icons {
  vertical-align: middle;
  /* Align the icon vertically */
  margin-right: 5px;
  /* Add some spacing between the icon and text */
}

.home {
  border-bottom-color: #ffcc00;
}

.catalog {
  border-bottom-color: #ff69b4;
}

.about {
  border-bottom-color: #1560bd;
}

.newsletter {
  border-bottom-color: #50C878;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  border-top: 1em solid black;
  width: 100%;
  text-align: center;
  z-index: 3;
}

nav ul {
  color: #fff;
  font-size: 3em;
  list-style: none;
  padding: 5px;
  margin: 0;
  display: flex;
  justify-content: center;
  background-color: black;
}

nav li {
  margin: -20px 1em -10px;
  border-bottom: 5px solid transparent;
}

nav a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ccc;
}

.album-cover {
  width: 300px;
  border: 10px solid #333;
}

.album-link {
  border: 10px solid #333;
}

.credit {
  font-variant: small-caps;
}

.half-size {
  font-size: 50%;
  white-space: nowrap;
}

/* animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}