
/*******************************
            Page
*******************************/
@import url("http://fonts.googleapis.com/css?family=Signika");

body {
    background-color: white;
}
@media (min-width:800px) { /* Desktop */
    body {
        min-width: 800px;
    }
}

/*******************************
        Notification
*******************************/
#notification {
    width: 100%;
    position: relative;
    font-family: 'Signika';
    font-size: 14px;
    background-color: rgb(255, 239, 91);
    min-height: 32px;
    border-bottom: #cccccc 1px solid;
}
#notification p {
    display: inline-block;
}
@media (min-width:800px) { /* Desktop */
    #notification p {
        margin-left: 20%;
        max-width: 60%;
        margin-top: 5px;
    }
} 
@media (max-width:799px) { /* Mobile */
    #notification p {
        margin-top: 2px;
    }
    #notification {
        text-align: center;
    }
}

/*******************************
        Information
*******************************/
#information {
    filter: alpha(opacity=85);
    opacity: 0.85;
    position: fixed;
    display: none;
    bottom: 0;
    right: 0;
    font-family: 'Times New Roman', Times, serif;
    font-size: 14px;
    margin: 5px;
    border: #cccccc 1px solid;
    background-color: #d6d6d6;
}

/*******************************
        Black window
*******************************/
.black {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10;
}
.black .exit {
    color: white;
    text-decoration: none;
    float: right;
}

/*******************************
        Centered block
*******************************/
.block {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}
.block .centered_block {
    width: 500px;
    margin: 30px;
    display: inline-block;
    font-family: 'Signika';
}
.block .centered_block p {
    text-align: center;
    margin-top: 5px;
}
.block .centered_block .butt {
    width: 150px;
    margin-left: auto;
    margin-right: auto;
}
.block .centered_block .butt button {
    width: 100%;
    font-family: "Times New Roman", Times, serif;
}
.block .centered_block .header {
    font-family: "Times New Roman", Times, serif;
}
@media (min-width:540px) { /* Desktop */
    .block .centered_block {
        max-width: 500px;
    }
}
@media (max-width:539px) { /* Mobile */
    .block .centered_block {
        width: 280px;
    }
}