:root {
  --bg1: #333;
  --text: #fff;
}

body {
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial,
    sans-serif,
    Apple Color Emoji,
    Segoe UI Emoji,
    Segoe UI Symbol;
  background: linear-gradient(
    135deg,
    rgba(246, 112, 3, 1) 0%,
    rgba(180, 34, 34, 1) 50%,
    rgba(87, 1, 164, 1) 100%
  );
  color: var(--text);
  margin: 0;
  display: flex;
  flex-flow: column;
  flex-wrap: nowrap;
  min-height: 100vh;
}

main{
  height: fit-content;
  flex: 1;
}

a {
  color: var(--text);
  text-decoration: underline;
  padding: 1em;
}

a:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

header {
  margin: 0;
  display: flex;
  padding: 1rem;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

header img {
  height: 4rem;
  width: 4rem;
}

.slideHeader {
  background-color: inherit;
  height: 3rem;
}

.header-logo {
  display: flex;
  align-items: center;
  flex-direction: row;
  font-size: 2em;
  text-decoration: none;
  h2 {
    font-size: 2rem;
    font-weight: normal;
    margin-left: 1em;
  }
}

.heading-text {
  font-family: "Orbitron", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  text-underline-offset: 0.3em;
  text-decoration-line: underline overline;
  text-decoration-thickness: 3px;
}

.masthead {
  display: flex;
  display: flex;
  align-items: center;
}

footer {
  padding: 1rem;
  margin-top: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
