@font-face {
    font-family: permanentmarker;
    src: url(../assets/fonts/PermanentMarker/PermanentMarker-Regular.ttf) format('truetype');
}

@font-face {
    font-family: latolight;
    src: url(../assets/fonts/Lato/Lato-Light.ttf) format('truetype');
}

html,
body {
    height: 100%;
}

body {
    background: #000;
    margin: 0px;
}

#container {
    display: flex;
    /* establish flex container */
    flex-direction: column;
    /* make main axis vertical */
    justify-content: center;
    /* center items vertically, in this case */
    align-items: center;
    /* center items horizontally, in this case */
    height: 100%;
}

.box {
    position: relative;
    width: 610px;
    margin: 5px;
    text-align: center;
    /* will center text in <p>, which is not a flex item */
}

#bluebox {
    font-family: permanentmarker;
    font-size: 4rem;
    text-shadow: -0.04em 0 0 red, 0.03em 0 0 blue;
    color: #EEE;
}

.silenthills {
    font-family: Arial, Helvetica, sans-serif;
    color: #666;
    text-shadow: 0 0 2px rgba(150, 150, 150, 1.5);
}

[data-silenthills="silenthills"]:hover ,[data-silenthill="silenthills"]:hover{
    cursor: pointer;
    color: #AAA;
    text-decoration: underline;
}
[data-silenthill="silenthills"]
{
    font-family: latolight;
}
[data-silenthills="silenthills"] .spaced {
    font-family: latolight;
    display: inline-block;
    margin: 0px 2px;
}