body {
    color: #242e42;
}

a:link {
    color: #242e42;
}

a:visited {
    color: #393c44;
}

/* Hi IE11 ! */
main {
    display: block;
}

/* pop messages */

.pop-message {
    box-sizing: border-box;
    position: fixed;
    width: 100%;
    top: 30%;
    padding: 20px 15%;
    background-color: #0174B5;
    color: white;
    z-index: 99;
    font-size: 1.2em;
}

.pop-message-cover {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 98;
}

.pop-message.error {
    background-color: #B50101;
}

.pop-message.success {
    background-color: #01B57E;
}

.pop-message.warning {
    background-color: #B58301;
}

.pop-message h1 {
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
}

.pop-message .pop-btns {
    text-align: center;
}

.pop-message button {
    display: inline-block;
    margin: 3px 10px;
    padding: 10px 0;
    width: 125px;
    font-size: 16px;
    background-color: #428BCA;
    color: white;
    border: none;
    transition-duration: .2s;
    outline: none;
}

.pop-message button:focus {
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.pop-message.error button {
    background-color: #CA4242;
}

.pop-message.success button {
    background-color: #42CA96;
}

.pop-message.warning button {
    background-color: #CA9A42;
}

.pop-message button:hover {
    background-color: rgba(1, 0, 1, 0.5);
}


