*
{
    padding:0px;
    margin:0px;
    box-sizing: border-box;
}
body
{
	font-family:sans-serif;
	height:100%;
    background-color:black;
}   
.side_menu_button span
{
    width:40px;
    height:10px;
    background:black;
    display:block;
    margin:3px 10px;
    
}
.side_menu_button
{
    position:absolute;
    right:5px;
    top:13px;
    margin-right:5px;
}
header
{
    position:fixed;
    width:100%;
    border:1px solid black;
    height:70px;
    /*line-height:65px*/;
    /*box-shadow: 0px 2px 10px lightcyan;*/
    background-color:white;
    z-index:9999999999999999;
}
header h1
{
    text-align:center;
    color:orangered;    
}
header #logo
{
    text-align:center;
    height:70px;
    width:100%;
}
nav
{
    position: fixed;
    height:100%;
    background-color:white;
    width:250px;
    display:block;
    left:-250px;
    border:1px solid black;
    padding-left:5px;
    padding-right:5px;
    padding-top:5px;
    font-size:22px;
	transition:left 0.5s ease-in-out;
    z-index:9999999999999999;
}

nav.active
{
    left:0px;
}

nav ul li
{
    height:65px;
    line-height:65px;
    width:100%;
    border:none;
    border-bottom:1px solid #333;
    text-align:center;
	background-color:white;
    z-index: 999;
    
}

nav ul li:hover
{
	background-color:lightskyblue;
    color:white;
}

nav ul li a
{
    text-decoration:none;
	color:black;
}

/*End of menu section*/

#container
{
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position:absolute;
    margin-top:80px;
    padding-bottom:150px;
    width:100%;

    color:white;
    /*background-color: white;*/
    text-align:center;
}
#container #main-header{
    color:red;
}

#container #banner
{
    width:60%;
    border-radius:10px;
}
#container .about-us
{
    text-align:left;
    padding:5px;
    width:60%;
    font-size:small;
}
#events
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position:relative;
    width:100%;
    padding:5px;
}
#events .event
{
    border:1px solid lightslategrey;
    margin:5px;
    padding:5px;
    border-radius:10px;
    height:180px;
    width:100%;
}
#events .event .event-image
{
    border-radius:10px;
    height:150px;
    width:30%;
}

#events .event .btn-buy-ticket
{
    height:60px;
    width: 30%;
    padding:5px;
    border-radius:10px;
    border: none;
    font-weight:bold;
    background-color:rgb(17, 17, 99);
	color:#ddd;
	font-size:20px;

}

#events .event .btn-buy-ticket a
{
    text-decoration:none;
    line-height:60px;
    color:#ddd;
}
/*Beginning of contact us forms*/
.contact_us_container
{
	padding-top:70px;
	width:100%;
	height:100%;
	display: flex;
	flex-direction:column;
	align-items:center;
	text-align:center;
	padding-bottom:120px;
	font-size:20px;
    color:#ddd;
}


.contact_us_container form
{
	margin-top:20px;
	border:1px solid white;
    border-radius:10px;
	padding-top:20px;
	padding-bottom:20px;
	width:40%;
	padding:5px;
}

.form_controls
{
	width:90%;
}

#SubmitButton
{
	height:60px;
	background-color:rgb(17, 17, 99);
	color:#ddd;
	outline:none;
	font-size:20px;
	border:none;
}

#SubmitButton:hover
{
	background-color: rgb(8, 1, 19);
}
/*Beginning of media queries*/

@media (max-width:820px)
{
    #container #banner
    {
        width:80%;
        border-radius:10px;
    }
    #container #about-us
    {
        width:80%;
    }
    #events .event .event-image
    {
        border-radius:10px;
        height:150px;
        width:80%;
    }

    #events .event .btn-buy-ticket
    {
        height:60px;
        width: 80%;
        padding:5px;
    }

	.contact_us_container
	{
		padding-top:70px;
	}

	.contact_us_container .directions
	{
		width:90%;
		font-size:16px;
		padding:2px;
	}

	.contact_us_container form
	{
		width:90%;
		padding:2px;
	}
}
@media (max-width:662px)
{

    #container #banner
    {
        width:90%;
        border-radius:10px;
    }
    #container #about-us
    {
        width:90%;
    }
    #events .event .event-image
    {
        height:150px;
        width:90%;
    }

    #events .event .btn-buy-ticket
    {
        height:60px;
        width: 90%;
        padding:5px;
    }
}
@media (max-width:470px)
{

    header #logo
    {
        text-align:center;
        height:70px;
        width:100%;
        transform: scale(1.7,1.7);
    }

    #container #banner
    {
        width:100%;
        border-radius:0px;
    }
    #container .about-us
    {
        width:100%;
    }
    #events .event .event-image
    {
        width:100%;
    }

    #events .event .btn-buy-ticket
    {
        height:60px;
        width: 100%;
        padding:5px;
    }

    nav
    {
        width:250px;
    }
}