
body
{
  margin: 0;
  padding: 0;
  /* make it look decent enough */
  background: #fff;
  color: #000;
  /*font-family: "Avenir Next", "Avenir", sans-serif;*/
  font-family: 'Press Start 2P';
}

h1
{
	 font-family: 'Press Start 2P';
	 font-size: 40px;
	 color: #000;
	 text-align: center;
}

h2
{
	 font-family: 'Press Start 2P';
	 font-size: 15px;
	 color: #000;
	 text-align: center;	
}
h3
{
	 font-family: 'Press Start 2P';
	 font-size: 15px;
	 color: #fff;
	 text-align: center;
	 display: inline-block;
}

a:link {
  color: #fff;
  text-decoration: none;
}

/* visited link */
a:visited {
  color: #fff;
  text-decoration: none;
}

/* mouse over link */
a:hover {
  color: #f78200;
  text-decoration: none;
}

/* selected link */
a:active {
  color: #fff;
  text-decoration: none;
}

/*------------------------------------------- Header -------------------------------------------------*/

.header{
	width:100%;
	position: top;
	top: 0px;
	left: 0px;
	padding:10px 0;
	background-color:#fff;
	text-align: center;
}

.responsive {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.responsiveGroup {
  width: 100%;
  height: auto;
}

/*-------------------------------------------Navigation Menu-------------------------------------------------*/

#menuToggle
{
  display: block;
  position: fixed;
  top: 50px;
  left: 50px;
  
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle a
{
  text-decoration: none;
  color: #000;
  
  transition: color 0.3s ease;
}

#menuToggle a:hover
{
  color: #f78200;
}


#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: #000;
  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%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #000;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
  position: absolute;
  width: 300px;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;
  
  background: #FFF;
  opacity: .75;
  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: 22px;
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul
{
  transform: none;
}


/*---------------------------------------Picture Gallery ---------------------------------------------*/


@keyframes carousely {
0% { left: 0%; }
20% { left: 0%; }
25% { left: -100%; }
45% { left: -100%; }
50% { left: -100%; }
55% { left: -200%; }
75% { left: -200%; }
80% { left: -200%; }
85% { left: -300%; }
100% { left: -300%; }
}

.slider {
	position: relative;
	display: inline-block;
	overflow: hidden;
}

.slider .carousel {
	position: relative;
	width: 500%; /* Don't touch this */
	margin: 0;
	left: 0;
	animation: 20s carousely infinite; 
}

.carousel .slide {
  width: 20%; /* Don't touch this */
  float: left;
  height: 800px; /* Change this if you want a bigger slideshow */
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide h2{
	position: relative;
	font-size: 3.125rem; /* 50px */
	color: #fff;
	display: inline-block;
	opacity:0.0;
}

.fig1{
	background: url("img/bday_bash1.jpeg");
	background-size: cover;
	background-position: right 35% bottom 65%;
}

.fig2{
	background: url("img/bday_bash2.jpeg");
	background-size: cover;
	background-position: right 35% bottom 80%;
}

.fig3{
	background: url("img/bday_bash3.jpeg");
	background-size: cover;
	background-position: right 35% bottom 80%;
}

@media screen and (max-width: 600px) {
  .carousel .slide {
    height: 300px;
  }
}

/*--------------------------------------- Section Headers ---------------------------------------------*/

.socialsHeader{
	width:100%;
	position: relative;
	padding:20px 0;
	background-color:#fff;
	text-align: center;
}

.musicHeader{
	width:100%;
	position: relative;
	padding:20px 0;
	background-color:#fff;
	text-align: center;
}

.videosHeader{
	width:100%;
	position: relative;
	padding:20px 0;
	background-color:#fff;
	text-align: center;
}

.contactHeader{
	width:100%;
	position: relative;
	padding:20px 0;
	background-color:#fff;
	text-align: center;
}

/*------------------------------------ Buttons ---------------------------------------------*/

.button {
  background-color: #fff;
  border: none;
  color: white;
  padding: 16px 32px;
  font-family: 'Press Start 2P';
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}

.button1 {
  background-color: white; 
  color: black; 
  border: 2px solid #000;
}

.button1:hover {
  background-color: #000;
  color: white;
}

/*---------------------------------------- Rows & Columns -----------------------------------------*/

.column {
  float: left;
  width: 100%;
  margin-bottom: 40px;
  padding: 0 8px;
  text-align: center;
}
.container2 {
  padding: 0 16px;
  text-align: center;
}

.container2::after, .row::after {
  content: "";
  clear: both;
  display: table;
}

@media screen and (max-width: 550px) {
  .column {
    width: 100%;
    display: block;
  }
  .container2 {
    width: 100%;
    display: block;
  }
}


/*-----------------------------Contact Form --------------------------------------*/

#fcf-form {
    display:block;
}

.fcf-body {
    margin: auto;
    font-family: 'Press Start 2P';
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
    padding: 30px;
    padding-bottom: 10px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    max-width: 80%;
}

.fcf-form-group {
    margin-bottom: 1rem;
}

.fcf-input-group {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}

.fcf-form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    outline: none;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.fcf-form-control:focus {
    border: 1px solid #313131;
}

select.fcf-form-control[size], select.fcf-form-control[multiple] {
    height: auto;
}

textarea.fcf-form-control {
    font-family: 'Press Start 2P';
    height: auto;
}

label.fcf-label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.fcf-credit {
    padding-top: 10px;
    font-size: 0.9rem;
    color: #545b62;
}

.fcf-credit a {
    color: #545b62;
    text-decoration: underline;
}

.fcf-credit a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.fcf-btn {
    display: inline-block;
    font-weight: 400;
    color: #000;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .fcf-btn {
        transition: none;
    }
}

.fcf-btn:hover {
    color: #000;
    text-decoration: none;
}

.fcf-btn:focus, .fcf-btn.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.fcf-btn-primary {
    color: #fff;
    background-color: #000;
    border-color: #000;
}

.fcf-btn-primary:hover {
    color: #000;
    background-color: #fff;
    border-color: #000;
}

.fcf-btn-primary:focus, .fcf-btn-primary.focus {
    color: #fff;
    background-color: #000;
    border-color: #000;
    box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.fcf-btn-lg, .fcf-btn-group-lg>.fcf-btn {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}

.fcf-btn-block {
    display: block;
    width: 100%;
}

.fcf-btn-block+.fcf-btn-block {
    margin-top: 0.5rem;
}

input[type="submit"].fcf-btn-block, input[type="reset"].fcf-btn-block, input[type="button"].fcf-btn-block {
    width: 100%;
}

/*----------------------------- Footer --------------------------------------*/

.footer {
  position: relative;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 10px;
  background-color: #000;
  color: #fff;
  text-align: center;
}