@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;
}

a {
  color: white;
}

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 a h1, main a p {
  color: black;
}

main article {
    width: 700px;
    height: 150px;
    background-color: red;
    border-radius: 10px;
    padding: 10px;
    margin: auto;
    margin-top: 15px;
    text-align: center;
    display: flex;
}

main article:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

main article p {
    padding: 10px;
}

main article img {
    float: left;
    border-radius: 10px;
}

.vidbannerimg {
  width: 200px;
  height: auto;
  margin: auto;
  vertical-align: middle;
  margin-left: -3px;
}

.kolom {
  display: flex;
  flex-direction: column;
}