@font-face {
    font-family: LeagueGothic;
    src: url('../fonts/League-Gothic/LeagueGothic-Regular.otf');
}

@font-face {
    font-family: Pacifico;
    src: url('../fonts/pacifico/Pacifico.ttf');
}

html,body {
    background: #CCCCCC;
	margin: 0;
	padding: 0;
    width: 100%;
    height: 100%;
    font-family: LeagueGothic, sans-serif;
    text-align: center;
}

h1 {
    margin: 20px auto 0px;
    text-align: center;
    font-size: 72px;
    font-weight: normal;
    color: #AA0000;
    text-shadow: 1px 1px 0px #dddddd;
}

h1.title {
    font-size: 96px;
}

h2 {
    font-size: 32px;
    margin: 10px auto 10px;
    font-weight: normal;
    font-family: Pacifico;
    font-style: italic;
    color: #AA0000;
    text-shadow: 1px 1px 0px #dddddd;
}

h3 {
    font-size: 24px;
    margin: 0px auto 10px;
    font-weight: normal;
    font-family: Pacifico;
    font-style: italic;
    color: #444444;
    text-shadow: 1px 1px 0px #dddddd;
}

code {
    display: inline-block;
    font-family: Courier, Courier New, monospace;
    padding: 10px 20px;
    background: white;
    box-shadow: 0 8px 6px -8px black;
    margin: 0px 0px 20px; 
    text-align: left;
}

a.button {
    color: #aa0000;
    padding: 10px 20px;
    margin: 0px 10px 10px;
    display: inline-block;
    text-decoration: none;
    font-size: 24px;
    font-weight: normal;
    font-family: Pacifico;
    text-shadow: 1px 1px 0px #dddddd;
}

h2.mobile-message, h2.nomobile-message, .nomobile-message {
    font-family: LeagueGothic;
    color: #444;
    font-style: normal;
    text-transform: uppercase;
}

h2.mobile-message { display: none; }
h2.nomobile-message { display: block; }

div.notify {
    position: absolute;
    top: 50%;
    background-color: rgba(0,0,0,.75);
    color: white;
    font-size: 24px;
    margin: -30px auto 0px;
    margin-left: -130px;
    left: 50%;
    display: block;
    width: 260px;
    height: 75px;
    border-radius: 5px;
}

span.message {
    position: relative;
    display: block;
    top: 10px;
}

@media only screen and (max-device-width: 1024px) {
    h2.mobile-message { display: block; }
    h2.nomobile-message { display: none; }
    .nomobile-message {display:none;}
}

@media only screen and (min-width: 1025px) {

    .content {
        width: 800px;
        margin: auto;
    }

}

@media only screen and (max-width: 1024px) {
    .content {
        margin: 20px;
    }
    code {
        word-wrap: break-word !important;
        max-width: 240px;
    }
}