@media (max-width:950px) {
    @media (min-width: 530px) {

html, body {
    font-family: 'Sawarabi Mincho', sans-serif;
    margin-right: 1px;
}

/*** Header ***/

.header {
    background-color:#cc0000;
    color: white;
    text-align: center;
    padding: 1em;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 4px 16px;
}

/*** Home ***/

.home {
    text-align: center;
    padding: 1em;
     box-shadow: rgba(0, 0, 0, 0.5) 0px 4px 16px;
    z-index: 4;
}

.hometext {
    padding-left: 2em;
    padding-right: 2em;
    font-size: 21px;
}

/*** Arrow Down ***/

.downpos {
    text-align: center;
    padding-top: 20px;
}

.down {
    border-radius: 50%;
    color: black;
    border: 2px solid gray;
    font-size: 35px;
    padding: 5px;
    transition: .2s ease-in;
    transform: rotate(-360deg);
}

.down:hover {
    background-color: #cc0000;
    border-color: white;
    color: white;
    transition: .2s ease-out;
    transform: rotate(360deg);

}

/*** Hauptcontent ***/

.hauptcap {
    text-align: center;
}

/*** Navbar ***/

.navbar {
    visibility: hidden;
    display: none;
}
.rpNav {
     display: block;
        }
        
.navigation {
    width: 100%;
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    background-color: #cc0000;
    box-shadow: 0 4px 4px -3px #232323;
    -moz-box-shadow: 0 4px 4px -3px #232323;
    -webkit-box-shadow: 0 4px 4px -3px #232323;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    padding-top: 0px;
}

.navigation a {
    text-decoration: none;
}

.navigation ul {
    margin-top:0px;
    text-align:center;
    list-style:none; 
    margin-left:auto;
    margin-right:auto;
}


.menulist {
    width:200px;
}


.logo {
    text-align:center;
    margin:0 auto;
}

.line1, .line2, .line3 {
  margin-top:5px;
  background-color:white;
  width:25px;
  height:3px;
  display:block;
  position:relative;
  opacity:1.0;
  border-radius:15%;
  transition: all .3s;
}

.line1.active {
  transform: rotate(270deg);
  opacity:0.0;
  background-color:yellow;
  top:5px;
}

.line2.active {
  transform: rotate(45deg);
  background-color:yellow;
}

.line3.active {
  transform: rotate(-45deg);
  background-color:yellow;
  top:-7px;
}

.menuitems {
    padding-top:0px;
    padding-bottom:12px;
    text-decoration: none;
    list-style:none; 
    font-weight: 300;
    font-size: 24px;
    display: inline-block;
    position:relative;	
    text-align:center;
    color: white;
    opacity:0.0;
    transition: all .5s ease-in-out;
}

.menuitems:after {
  content:'';
  display:block;
  width: 0;
  height: 1px;
  background: white;
  transition: width .2s;
}

.menuitems:hover::after {
    width:100%;
}

#closebtn {
    height:25px;
    width:25px;	
    position: absolute;
    text-decoration:none;
    top: 10px;
    left: 25px;
    font-size: 36px !important;
    margin-right: 50px;
    z-index:100;
    color:white;
    cursor:pointer;
    transition:background-position .3s;
}

#main {	
    transition: margin-top .4s;
    text-align:center;
    margin:auto;
    padding: 0px;
    font-size:30px;
}

/*** Philsophie ***/
.philo {
    text-align: center;
     box-shadow: rgba(0, 0, 0, 0.5) 0px 4px 16px;
    
}
#phtx {
    
}
/*** Single Images ***/ 
.images {
    padding: 16px;
}

/*** Footer ***/
footer {
    text-align: center;
    background-color: #cc0000;
    color: white;
    font-size: 35px;
    padding: 1em;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 4px 16px;
}
.up {
    border-radius: 50%;
    color: white;
    border: 2px solid white;
    font-size: 35px;
    padding: 5px;
    background-color: #cc0000;
    transition: .2s ease-in;
    transform: rotate(-360deg);
}
.up:hover {
    background-color: white;
    border-color: #cc0000;
    color: #cc0000;
    transition: .2s ease-out;
    transform: rotate(360deg);

}

/*** News ***/

.news {
    text-align: center;
}
/*** Spinner ***/
.spinner:before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    height: 60px;
    width: 60px;
    margin-top: -30px;
    margin-left: -30px;
    border-radius: 50%;
    border: 3px solid lightgray;
    border-top-color: #cc0000;
    animation: spin 0.7s ease-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/***Features***/

/***Scrollbar***/
::-webkit-scrollbar {
    width: 15px;
}
/* Spur */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px gray; 
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: coral; 
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #cc0000; 
}
/******/
/***Markierungsfarbe***/
::-moz-selection {
 background-color: #333;
 color: white;
}
::selection {
 background-color:#333;
 color: white;
}
/******/
    }
}