@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;900&display=swap");

body {
  background-color: #5c041e;
  color: #fff;
  font-family: Merriweather;
  font-size: 14px;
  margin: 0;
  padding: 0 20px;
}

a {
  color: #fff;
  text-decoration: none;
  transition: color 300ms ease-in-out;
}

a:hover {
  color: #ccc;
}

#container {
  max-width: 600px;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
}

header {
  padding: 30px 0;
  margin-bottom: auto;
}

#menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

#menu li {
  display: inline-block;
  margin-right: 15px;
}

#menu li:last-child {
  margin-right: 0;
}

#author {
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 25px;
  font-weight: 400;
}

#title {
  font-size: 3rem;
  margin-top: 0;
  margin-bottom: 7px;
  font-weight: 900;
}

#subtitle {
  margin-top: 0;
  margin-bottom: 35px;
  font-size: 25px;
  font-weight: 300;
}

#lead {
  font-size: 1.05rem;
  margin-top: 0;
  margin-bottom: 30px;
}

#download {
  margin-top: 0;
  margin-bottom: 20px;
}

#download-button {
  display: inline-block;
  width: 300px;
  background-color: #fff;
  padding: 15px 50px;
  border-radius: 5px;
  text-decoration: none;
  color: #5c041e;
  font-size: 1.2rem;
  font-weight: 900;
  transition: background-color 300ms ease-in-out;
}

#download-button:hover {
  background-color: #ccc;
}

#description {
  color: #ccc;
  font-size: 0.8rem;
  max-width: 300px;
  margin: 0 auto 0;
}

footer {
  margin-top: auto;
  padding: 30px 0;
  color: #ccc;
}

* {
  box-sizing: border-box;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

#portrait {
  margin-bottom: 30px;
}

#portrait p {
  color: #ccc;
  margin: 10px 0 0;
  font-size: 0.8rem;
}

#portrait img {
  border: 10px solid #fff;
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

hr {
  border: 0;
  height: 0;
  border-top: 1px solid #fff;
}
