* {
    box-sizing: border-box;
}

body {
    background-color: #000;
    background-image: url(../img/bg.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    border: none;
    margin: 0;
    padding: 0;
    font-size: 12px;
    font-family: Consolas, 'Courier New';
}

.menu_block {
    display: inline-block;
    padding: 0.8em 1.2em;
    border: 2px solid rgba(29, 219, 97, 0.5);
    border-radius: 0.5em;
    background-color: rgba(0,0,0,0.2);
    color: rgba(29, 219, 97, 0.2);
    font-size: 1.5em;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 0.5em;
}

    .menu_block:hover {
        border: 2px solid rgba(29, 219, 97, 1);
        background-color: rgba(0,0,0,0.8);
        color: rgba(29, 219, 97, 1);
    }

.slogan_block {
    display: inline-block;
    width: 20em;
    text-align: left;
    padding: 0.53em 0.8em;
    border-radius: 0.33em;
    border: 2px solid rgba(29, 219, 97, 1);
    background-color: rgba(0,0,0,0.8);
    color: rgba(29, 219, 97, 1);
    font-size: 1.5em;
    font-weight: bold;
}

#copy {
    position: fixed;
    bottom: 0.5em;
    left: 0.5em;
    color: rgba(29, 219, 97, 0.5);
    background-color: rgba(0,0,0,0.5);
}

#dialog {
    border-radius: 0.5em;
    border-top-left-radius: 0;
    border: 2px solid rgba(29, 219, 97, 1);
    background-color: rgba(2,19,10,0.9);
    color: rgba(29, 159, 97, 1);
}

#context {
    transition: all 0.3s ease;
}

    #context i {
        font-weight: bold;
        color: rgba(29, 199, 97, 1);
    }

    #context p {
        font-size: 1.2em;
    }

    #context a {
        font-size: 1.2em;
        color: inherit;
        text-decoration: underline;
        cursor: pointer;
    }

        #context a:hover {
            color: rgba(29, 189, 97, 1);
        }

.arrow {
    position: absolute;
    width: 2.5em;
    height: 2.5em;
    line-height: 2.5em;
    text-align: center;
    border-radius: 5px;
    border: 1px solid rgba(29, 159, 97, 1);
    background-color: rgba(29,39,10,0.9);
    color: rgba(29, 189, 97, 1);
    cursor: pointer;
}

    .arrow:hover {
        background-color: rgba(29,79,10,0.9);
        color: rgba(29, 219, 97, 1);
    }

#closer {
    position: absolute;
    width: 2.9em;
    height: 2.1em;
    line-height: 2.1em;
    padding-top: 0.16em;
    text-align: center;
    border-top-right-radius: 0.5em;
    border-top-left-radius: 0.5em;
    background-color: rgba(29, 189, 97, 1);
    color: #000;
    cursor: pointer;
}

    #closer:hover {
        background-color: rgba(29, 219, 97, 1);
    }
