/* Properties */
:root {
  --margin-top: 15px;
}

/* CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Styling */
body {
  background-color: black;
  color: white;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  padding: 15px 0;
}

ul {
  list-style-type: none;
}

a {
  color: white;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

.flex {
  display: flex;
}

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

/* Div Layout */
.main-layout {
  gap: 30px;
}

/* Header */
header {
  margin-bottom: 15px;
  justify-content: space-around;
}

.balrog-header {
  width: 100px;
  height: auto;
}

.singing-quote {
  height: 100px;
}

/* Sidebar */
.buttons-container {
  flex-basis: 25%;
  padding: 50px 0;
}

.buttons {
  font-size: 0;
  text-align: center;
}

/* Main Contents */
main {
  flex-basis: 75%;
  min-height: 500px;
}
main h2{
  margin-top: var(--margin-top);
  text-align: center;
}



/* Footer */
footer {
  margin-top: 50px;
}