  @import url('https://fonts.googleapis.com/css2?family=Parkinsans&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

li a {
  color: white;
}

li a:visited {
  color: whitesmoke;
}

a:hover {
  color: red;
}

body {
  background-color: black;
  font-family: 'Parkinsans';
}

.off-screen-menu {
  background-color:  black;
  height: 100vh;
  width: 100%;
  max-width: 450px;
  position: fixed;
  top: 0;
  left: -450px;
  display: flex;
  flex-direction: column;
  align-items: center;    
  justify-content: center;
  text-align: center;
  font-size: 3rem;
  transition: .3s ease;
}
.off-screen-menu.active {
  left: 0;
}

nav {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  background-color: black;
}

nav h1 {
  color: red;
  margin-top: 10px;
}

.ham-menu {
  height: 50px;
  width: 40px;
  margin-right: auto;
  position: relative;
}

.ham-menu span {
  height: 5px;
  width: 100%;
  background-color: red;
  border-radius: 25px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: .3s ease;
}

.ham-menu span:nth-child(1) {
  top: 25%;
}

.ham-menu span:nth-child(3) {
  top: 75%;
}

.ham-menu.active span {
  background-color: white;
}

.ham-menu.active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.ham-menu.active span:nth-child(2) {
  opacity: 0;
}

.ham-menu.active span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
header {
  display: flex;
}

#page {
  color: red;
  margin-top: 11px;
  margin-left: auto;
  margin-right: 25px;
}

#YTLOGO {
  width: 110px; height: 100px;
  margin-top: -25px; 
}

#logoentitel {
  display: flex;
}

#bigimage {
  width: 100%;
  height: 650px;
  overflow: hidden;
}

main {
    margin: 0;
    padding: 0;
    background-color: black;
    font-family: 'Parkinsans';
    color: black;
    text-align: center;
}

.container {
    padding: 20px;
}

.header {
  align-items: center;
}

.header h1 {
    background-color: red;
    color: black;
    display: inline-block;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.buttons {
    flex-wrap: wrap;
}

#button1 {
    background-color: orange;
    color: black;
    text-decoration: none;
    padding: 20px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
    margin-bottom: 30px;
    margin-left: 80px;
}

#button2 {
  background-color: orange;
  color: black;
  text-decoration: none;
  padding: 20px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.2s;
  margin-bottom: 30px;
  align-items: center;
  margin-left: -120px;
}

#button3 {
  background-color: orange;
  color: black;
  text-decoration: none;
  padding: 20px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.2s;
  margin-bottom: 30px;
  margin-left: -100px;
}

#button4 {
  background-color: orange;
  color: black;
  text-decoration: none;
  padding: 20px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.2s;
  margin-bottom: 30px;
  margin-left: 50px;
}

#button5 {
  background-color: orange;
  color: black;
  text-decoration: none;
  padding: 20px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.2s;
  margin-bottom: 30px;
  margin-left: -120px;
}

#button6 {
  background-color: orange;
  color: black;
  text-decoration: none;
  padding: 20px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.2s;
  margin-bottom: 30px;
  align-items: center;
}

.button:hover {
    background-color: #ff7700;
    transform: scale(1.1);
}

.rij12 {
  display: flex;
  justify-content: space-evenly;
}