html {
  font-size: 16px; /* Set the root font size, this is the default even when not specified. */
}

body{
  background-color: white;
  color: black;
  margin: 0px;
  text-align: center;
}

header
{
  background-color: transparent;
  background-image: url("../images/MusicStudioHeaderImage.png");
  background-repeat: no-repeat;
  text-align: center;
}

header h1
{
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: white;
  font-size: 8rem;
}

nav
{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: auto;
}

nav div#logo
{
  color: white;
  font-size: 4rem;
  font-weight: bold;
  margin: 100px;
  text-decoration: none;
}

nav div#links
{
  color: white;
  font-size: 2rem;
  font-weight: bold;
  margin: auto;
  text-align: center;
  vertical-align: middle;
}

nav a:link, nav a:visited, nav a:hover, nav a:active, nav a:focus
{
  color: white;
  margin-left: 5px;
  margin-right: 5px;
  text-align: center;
  text-decoration: none;
}

section
{
  display: flex;
  flex-direction: column;
  font-size: 1.25rem;
  margin: 10px auto 10px auto; /* top, right, bottom, left */
  width: 80%;
}

section h1
{
  background-color: lightgray;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 3rem;
}

section a:link, section a:visited, section a:hover, section a:active, section a:focus
{
  color: black;
  margin-left: 5px;
  margin-right: 5px;
  text-align: center;
  text-decoration: none;
}

section#about
{
  margin-top: 20px;
  font-size: 2rem;
  width: 40%;
}

form
{
  display: grid;
  grid-template-columns: auto auto;
  margin: 0px auto 0px auto;
}

input, label, textarea, button
{
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  margin: 10px 10px 10px 10px;
  font-size: 1.25rem;
}

form label
{
  text-align: center;
}

form button
{
  grid-column: 1/3; /* start 1 and end 3 */
  height: 50px;
  width: 100px;
  align-self: center;
  justify-self: center;
}

form textarea
{
  resize: none;
}

footer
{
  align-items: center;    /* Centers vertically (Cross Axis) */
  display: flex;
  flex-direction: row;
  justify-content: center; /* Centers horizontally (Main Axis) */
  margin: 100px auto 100px auto;
}

footer p
{
  margin: 0px 10px 0px 10px;
}

footer a
{
  margin: 0px 10px 0px 10px;
}