html {
  --monoFont: 'Share Tech Mono', monospace;
  --sansFont: 'Raleway', sans-serif;
  --serifFont: 'Amatic SC', serif;
  --colorBg: #e24fdf;
}

body {
  background-repeat: no-repeat;
  background-size:  cover;
  background-position: top;
  font-family: var(--sansFont);
  font-size: 20px;
  background-color: var(--colorBg);
  color: white;
  margin: 0;
  padding: 0;
  height: 100%;
  transition: all 1.5s ease-in-out;
  -webkit-transition: all 1.5s ease-in-out;
}

a, a:visited {
  color: deepskyblue;
  text-decoration: none;
}

h1 { font-size: 5em }
h2 { font-size: 3em }
h3 { font-size: 1.5em }

h1 + h3 { margin-top: -0.6em }

h1, h2, h3, h4, h5, h6 {
  font-weight: 100;
  font-family: var(--serifFont), serif;
}

body::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
body::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.5);
  border-radius: 6px;
}
body::-webkit-scrollbar-corner {
  background-color: transparent;
}

.main-logo {
  background-color: rgba(0,0,0,.3);
  margin-top: -20px;
  z-index: -1;
  padding: 0 20px;
}

.main-logo h1 {
  margin: 0;
  color: #fff;
  text-shadow: #555 1px 1px;
  font-weight: bold;
}

.mono {
  font-family: var(--monoFont); monospace;
}

table, th, td {
  border: 1px solid #999;
  border-collapse: collapse;
  padding: 5px;
}

tr:nth-child(odd) {
  background-color: #ddd;
}

.middle-align {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  text-decoration: none;;
}

.middle-align img {
  margin-right: 5px;
}

code {
  white-space: pre-wrap;
}

pre {
  background: linear-gradient(rgba(0,0,0,0.05),rgba(0,0,0,0.05));
  padding: 10px;
}

pre code {
  font-family: var(--monoFont), monospace;
  color: inherit;
}

blockquote {
  border-left: 5px solid lightgray;
  padding-left: 10px;
  margin-left: 20px;
  font-family: var(--serifFont), serif;
}

.center-box-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
}

.button {
  color: navy!important;
  text-decoration: none;
  background-color: deepskyblue;
  border-radius: 5px;
  padding: 10px;
}

.column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main {
  min-height: 100%;
  position: relative;
}

.footer {
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  color: white;
}
