/* Fonts from Google Fonts - more at https://fonts.google.com */

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

body {
  background-color: white;
  font-family: "Raleway", sans-serif;
  padding: 5px 25px;
  font-size: 18px;
  margin: 0;
  color: #444;
}

#wrapper{
	width: 90%;
	margin: 0 auto;
	background-color: white;
}


#TopMenu{
display:none;
}

  #Mobile{
	display: inline;
  }
  
  #Desktop{
  	display: none;
  }
  
  #TopImage{
	 display: block;
	 margin: 0 auto;
  }




/* Start sidebar */
a:hover
{
  color: tomato;
}

#menuToggle
{
  display: block;
  position: relative;
  top: 50px;
  left: 20px;
  
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; 
  z-index: 2; 
  
  -webkit-touch-callout: none;
}


#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: #232323;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}


#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}


#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}


#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}


#menu
{
  position: absolute;
  width: 200px;
  margin: -100px 0 0 -100px;
  padding: 50px;
  padding-top: 125px;
  
  background: #4c352b;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  font-size: 20px;
  line-height: 12vw;
}


#menuToggle input:checked ~ ul
{
  transform: none;
}
/* End sidebar */







h1 {
  font-family: "Raleway", sans-serif;
  font-size: 5.2vw;
  text-align: center;
  color: #4c352b;
}

header{
  text-align: center;
  line-height: 2vw;
}

b{
  text-decoration: none;
  font-size: 20px;
  color: white;
  line-height: 12vw;
}

a{
  text-decoration: none;
  font-size: 5vw;
  color: #cdac70;
}

p{
padding: 30px;
font-size: 4.25vw;
}


#Logo{
  width: 50%;
}

#MainSection{
padding: 10px;
background-color: #cdac70
}











@media (min-width: 1060px){

  #TopMenu{
	display: inline-block;
	background-color: #4c352b;
	width: 100%
	}

body {
  background-color: #d6bbb2;
  	 }

#wrapper{
	max-width: 1100px;
	margin: 0 auto;
	background-color: white;
}
  
  h1 {
    font-family: "Raleway", sans-serif;
    font-size: 40px;
    text-align: center;
  }
  
  #Mobile{
	display: none;
  }
  
  #Desktop{
  	display: inline;
  }
  
  
  b{
    text-decoration: none;
    font-size: 30px;
    color: white;
  }
  
  a{
    text-decoration: none;
    font-size: 30px;
    color: #cdac70;
  }
  
  p{
	padding: 30px;
	font-size: 24px;
}
  
  header{
    line-height: 80px;
  }
  
  #Logo{
    width: 100%;
  }
    
  
  #menuToggle{
  display: none;
  }
  


	
}