html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background-color: black;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

header {
  padding-bottom: 2rem;
  border-bottom: 0.2rem white solid;
  margin: 0;
}

/* ---== HEADER ==--- */

.header-logo {
  margin-bottom: 0;
  width: 100vw;
  height: 30vh;
  border-bottom: 0.2rem white solid;
}

.creator {
  color: red;
  position: relative;
  top: -2.3rem;
  margin: 0rem 0rem 0rem 1rem;
  font-family: 'Courier New', Courier, monospace;
  font-weight: bold;
  font-size: 1.5rem;
}

.nav-buttons a {
  color: rgb(6, 167, 202);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 1.8rem;
  margin: 0;
  border: 0.25rem solid rgb(6, 167, 202);
  padding: 0.5rem 1rem 0.5rem 1rem;
  text-decoration: none;
  transition-duration: 150ms;
}

.nav-buttons a:hover {
  background-color: rgba(6, 167, 202, 0.4);
  transition-duration: 150ms;
}

.nav-buttons a:active {
  background-color: rgba(6, 167, 202, 0.7);
}

.nav-buttons {
  display: flex;
  justify-content: space-around;
  width: 100vw;
  margin: 0;
}

/* ---== BODY ==--- */

.body-container {
  display: flex;
  justify-content: center;
  margin: 2rem 0rem 0rem 0rem;
}

.text-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  max-width: 60vw;
  min-width: 60vw;
  background-color: #fcf8ea;
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
}

.welcome {
  font-family: 'Tahoma';
}