/*Header*/

.header {
    background-color: #b01450;
    padding:0%;
    z-index: 3;
    position: sticky;
    top: 0;
    width: 100%;
    }



/*Side Menu Button*/

.menubox{
    height:100%;
    display: inline-flex;
    align-self: center;
    align-items: center;
    padding: 0% 1%;
    width: auto;
    right: 2%;
    position: absolute;
}

.menu{
  display: inline-block;
  cursor: pointer;
  right: 0;
}

.bar1, .bar2, .bar3 {
    width: 35px;
    height: 5px;
    background-color: #ffffff;
    margin: 6px 0;
    transition: 0.4s;
  }
  
  /* Rotate first bar */
  .change .bar1 {
    transform: translate(0, 11px) rotate(-45deg);
  }
  
  /* Fade out the second bar */
  .change .bar2 {opacity: 0;}
  
  /* Rotate last bar */
  .change .bar3 {
    transform: translate(0, -11px) rotate(45deg);
  }


/*Logo and Name*/

.logobox{
    height:100%;
    display: inline-flex;
    align-self: center;
    align-items: center;
    padding: 0% 2%;
    width: auto;
}

.logo{
    
    align-self: center;
    display: inline-block;
    width: 40%;
    padding-left: 20%;
}

.logolink{
    margin-right: 0%;
    padding-right: 0%;
    width: auto;
    margin: auto;
}

.name{
    display: inline-block;
    color: #ffffff;
    font-size: 30px;
    font-family: Cambria;
    font-variant: small-caps;
    font-weight: 100;
}




/*Content*/
.content {
  padding: 10%;
  padding-top:5%;
  position: static;
  z-index: 1;
  }

.supertitle{
  color: #b01450; 
  font-family: Cambria; 
  font-variant: small-caps; 
  font-weight: 600; 
  padding: 10px;  
  text-align: center;
  font-size: 50px;}

.halves{
  display: inline-block;
  width: 50%;
  margin: 0;
}

.halfimage{
  max-width: 90%;
  max-height:90%;
  margin: 2%;
}

.title{
  color: #b01450; 
  font-family: Cambria; 
  font-variant: small-caps; 
  font-weight: 600; 
  padding: 10px;  
  text-align: left;
  font-size: 40px;
}

.subtitle{
  color:#111111;
  font-family: Cambria;
  font-variant: normal;
  font-weight: 400;
  padding: 10px;
  padding-top: 0px;
  text-align:left;
  font-size: 25px;
}

.text{
  color:#111111;
  font-family: Cambria;
  font-variant: normal;
  font-weight: 300;
  padding: 10px;
  text-align:left;
  font-size: 15px;
}

/*Side Menu*/



.sidenav{
  height: 100%;
  width: 0;
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  background-color: rgb(0,0,0); /* Black fallback color */
  background-color: rgba(0,0,0, 0.9); /* Black w/opacity */
  overflow-x: hidden; /* Disable horizontal scroll */
  transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

.nav{
    
  position: relative;
  top: 25%; /* 25% from the top */
  width: 100%; /* 100% width */
  text-align: center; /* Centered text/links */
  margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
}

.sidenav a {

    color: #ffffff;
    font-size: 15px;
    font-family: Cambria;
    font-variant: small-caps;
    font-weight: 100;
    padding: 8px;
    text-decoration: none;
    display: block; /* Display block instead of inline */
    transition: 0.3s; /* Transition effects on hover (color) */
}


.sidenav a:hover, .sidenav a:focus {
    background-color: rgb(60, 60, 60); /* Black fallback color */
    background-color: rgba(60, 60, 60, 0.9); /* Black w/opacity */
}

.navigation{
    width: 10%;
}


@media only screen and (max-width: 800px) {
    .sidenav a {font-size: 20px}
    .navigation{width: 50%;}
    .supertitle{font-size:40px;}
    .title{font-size:25px; padding: 5px;}
    .subtitle{font-size:12px; padding:2px; padding-top: 0px;}
    .text{font-size:8px; padding: 2px;}
  }