@import url('http://fonts.googleapis.com/css?family=Open+Sans:400,700');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
	background-color: #f70000;
}

body{
	font:14px/1.5 Arial, Helvetica, sans-serif;
	margin:0;
}


header{
    box-sizing: border-box;
	text-align: center;
    width: 100%;
    padding: 25px 40px;
    background-color: #000000;
    overflow: hidden;
}


header h1{
    float: center;
	font: normal 24px/1.5 'Open Sans', sans-serif;
	color: #fff;
}

ul {
    list-style: none;
    border-bottom: 1px solid #EAEAEA;
    background-color: #FFF;
    padding: 20px;
    margin-top: 0;
    text-align: center;
    margin-bottom: 75px;
}

ul a{
    text-decoration: none;
    color: #FFF;
    text-align: left;
    background-color: #BCB8C2;
    padding: 10px 16px;
    border-radius: 2px;
    opacity: 0.8;
    font-size: 16px;
    display: inline-block;
    margin: 4px;
    line-height: 1;
    outline: none;

    transition: 0.2s ease;
}

ul li a.active{
    background-color: #F05283;
    pointer-events: none;
}

ul li a:hover {
    opacity: 1;
}


ul li{
    display: inline-block;
}


@media (max-width: 1000px) {


    header h1{
        float: none;
    }

    header a{
        margin-top: 25px;
        float: none;
    }

}

.main-content{
    margin-bottom: 75px;
}

/* Styling the buttons for showing the dialogs. You can ignore and remove these styles */

.dialog-show-button{
    text-align: center;
    display: block;
    box-sizing: border-box;
    background-color: #060607;
    box-shadow: 3px 3px 1px 1px rgba(0, 0, 0, 0.308);
    cursor: pointer;
    font: bold 20px sans-serif;
    color: #ffffff;
    width: 330px;
    padding: 18px 0;
    margin: 20px auto;
    z-index: 1;
    border-radius: 5px;
}

.dialog-show-button:first-of-type{
    margin-top:10%;
}

.dialog-show-button:hover{
    opacity:0.96;
    background-color: blue;
}

.dialog-show-button:active{
    position:relative;
    bottom:-1px;
}

/* -- Link to Tutorialzine -- */

.tz-link{
	text-decoration: none;
	color: #fff !important;
	font: bold 36px Arial,Helvetica,sans-serif !important;
}

.tz-link span{
	color: #da431c;
}