@import url("https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap");

:root {
  --text-color: black;
  margin: 2rem;
}

html,
body {
  font-family: "Source Code Pro";
  height: 120%;
  overflow-y: hidden;
}

h1 {
  font-size: 2rem;
  margin-bottom: 0.2em;
}

p {
  margin-bottom: 0.4em;
}

a,
li {
  text-decoration: none !important;
  color: var(--text-color);
}

a {
  position: relative;
}

a:after {
  border-top: 0.1rem solid var(--text-color);
  content: "";
  position: absolute;
  right: 100%;
  bottom: -0.07em;
  left: 0;
  -webkit-transition: right 0.4s cubic-bezier(0, 0.5, 0, 1);
  transition: right 0.4s cubic-bezier(0, 0.5, 0, 1);
}

a:hover:after {
  right: 0;
}

.links {
  font-size: 1.4rem;
}

br {
  border-top: 1px solid black;
}

.main-content {
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 50%;
}

nav {
  display: flex;
  justify-content: left;
}

nav > a {
  padding: 20px;
}

ul li::before {
  content: "- ";
}

.twitch-button {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  justify-content: center;
  display: flex;
  align-items: center;
  border: 1px solid var(--text-color);
  border-radius: 5px;
  background-color: #ffff;
  color: black;
  font-size: 1.5rem;
  cursor: pointer;
}

.twitch-button:hover {
  background-color: var(--text-color);
  color: #ffff;
}

.twitch-text {
  margin-left: 0.5rem;
  position: absolute;
  top: 45%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  justify-content: center;
  display: flex;
  border: 1px solid var(--text-color);
  border-radius: 5px;
  background-color: #ffff;
  color: black;
  font-size: 1.5rem;
}