@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap");

:root {
  --Golden-black: hsl(40, 6%, 9%);

  --Gold: #c9a24a;
}
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
body {
  background-color: var(--Golden-black);

  background-size: 90%;
  background-position: 50%;
  background-position-y: 5rem;

  overflow-x: hidden;
}
.topstuff {
  padding-right: 3rem;
  padding-top: 1rem;
  display: flex;

  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 0.3rem;
}

.infotab {
  font-size: 20px;
  color: white;
  display: flex;
  justify-content: space-evenly;

  min-width: 350px;
}

.infotab a {
  text-decoration: none;
  color: white;
  display: inline-block;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.infotab a:hover {
  transform: scale(1.1);
  color: beige;
  text-decoration: underline;
}

.Header {
  padding-left: 2.5rem;
}
.title {
  color: white;
  font-size: 2rem;
}
