body {
  margin: 0;
  font-family: "Titillium Web", sans-serif;
}
.bg-image {
  position: absolute;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}
.content-box {
  display: flex;
  position: relative;
  border: 1px solid #fff5;
}
.content {
  width: 50vw;
  height: 100vh;
  display: block;
}
#title {
  background-color: #0005;
  display: flex;
  justify-content: center;
  align-items: center;
}
#title h1 {
  vertical-align: middle;
  color: white;
  border-bottom: 1px solid white;
}
#links {
  background-color: #000c;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.link-card {
  background-color: #ddd;
  width: 350px;
  height: min-content;
  margin: 50px 0;
  display: flex;
  flex-flow: column;
  padding: 50px;
  text-align: center;
  align-content: space-evenly;
  flex-basis: auto;
  border-radius: 10px;
}

h2 {
  font-size: 48px;
  border-bottom: 1px solid black; 
}
.link-button-group {
  display: flex;
  flex-flow: column;
}
.btn {
  margin: 25px 25px;
  padding: 10px 0;
  color: #333;
  background-color: #bbb;
  font-size: 18px;
  display: flex;
  align-items: center;
  border-radius: 8px;
}
.btn img {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  margin: 0 5px;
  padding: 5px;
  background-color: #999;
}
a {
  text-decoration: none;
}
.btn:hover {
  color: #333;
  background: #999;
}