/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --gradient-color: linear-gradient(180deg,
                  hsl(235, 4%, 75%) 0%,
                  hsl(235, 4%, 50%) 100%);
  --dark-color: hsl(237, 86%, 49%);
  --white-color: hsl(235, 16%, 95%);
  --body-color: #000000;

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --normal-font-size: 1rem;
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  text-decoration: none;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--white-color);
}

a {
  text-decoration: none;
}

/*=============== BUTTON ===============*/


.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.container2 {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 8vh;
  height: 92vh; 
  width: 100vw;
  align-items: left;
  text-align: left;
  
}

.container2 li{
  list-style: none;
  margin-left: 2rem;
  padding: 2rem 2rem 0 0;
}

.container2a {
  height: 92vh;
  width: 95vw;
  color: white;
  overflow-y: scroll;
}

@media screen and (max-width: 400px) {
  .container2a {
    width: 95vw;
  }
}

/* Die Breite/Höhe der Scrollbar */
::-webkit-scrollbar {
  width: 0.7rem;
  height: 80vh;
}

/* Die "Schiene" der Scrollbar */
::-webkit-scrollbar-track {
  background: #000000;
}

/* Der bewegliche Teil ("Daumen") */
::-webkit-scrollbar-thumb {
  background: aqua;
  border-radius: 6px;
}

/* Beim Hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}


a {
  color: white;
  font-weight: bold;
}


