* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, Arial, sans-serif;
  background: #f5f5f5;
  color: #000;
  font-size: 16px;
  /*-webkit-font-smoothing: antialiased;  /* BESSERE LESBARKEIT */
  /*text-rendering: optimizeLegibility;  /* BESSERE LESBARKEIT */
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
  border-bottom: 2px solid #ff0000;   
}


/* Logo */
.logo img {
    height: 100px;
    	
}

/* Hamburger */
.menu-btn {
    font-size: 32px;
    cursor: pointer;
}

/* SIDE MENU */
.side-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: white;
    transition: right 0.3s ease;
    z-index: 1001;
    padding-top: 80px;
    overflow-y: auto;
}

.side-menu.active {
    right: 0;
}

/* Links */
.side-menu a, 
.side-menu span {
    display: block;
    padding: 12px 20px;
    font-size: 20px;
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.side-menu a:hover, 
.side-menu span:hover {
    color: red;
}

/* Submenu */
.submenu {
    display: none;
    padding-left: 15px;
}

.has-submenu.active .submenu {
    display: block;
}

.linie-top-orange {
    width: 100vw;
    height: 2px;
    background: #ff0000;
    margin-bottom: 60px;
}

/* Content Abstand */
.content {
    padding-top: 80px;
}

/* Optional Desktop */
@media (min-width: 768px) {
    .side-menu {
        width: 350px;
        right: -350px;
    }
}



/*
/* CONTENT */
.main {
  padding-left: 35px;
  padding-right: 35px; /*  Abstand Album zum Rand  */
}
*/

.main1{
  margin-right: 30px;
  text-align: right;
  font-size: 18px;
}

.main2{
  margin-right: 40px;
  text-align: right;
  font-size: 14px;
}

.main3{
  margin-right: 30px;
  text-align: center;
  font-size: 14px;
}

.main4{
  text-align: center;
  font-size: 14px;
}


/* OPTIONAL: etwas Abstand oben */
.main h1 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #000;
}
