/*** uncss> filename: src/css/custom.css ***/
html {
    /* Adjust font size */
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    /* Font variant */
    font-variant-ligatures: none;
    -webkit-font-variant-ligatures: none;
    /* Smoothing */
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
}

body {
    min-height: 1200px;
    /* Chrome 10-25, Safari 5.1-6 */
    background: -webkit-linear-gradient(to right, #33001a, #1a0000 30%, #1a0000 70%, #33001a 100%);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background: linear-gradient(to right, #33001a, #1a0000 30%, #1a0000 70%, #33001a 100%);
    font-family: "Trebuchet MS", Tahoma, sans-serif;
    font-size: 16px;
    line-height: 1.25em;
    color: #eee;
    text-shadow: hsla(0,0%,0%,.5) 0 -1px 0, hsla(0,0%,20%,.6) 0 2px 1px;
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 2px 0;
}

li { padding: 3px; }

.big-text { font-size: 30px; line-height: 1.2em; letter-spacing: -1px; }
.medium-text { font-size: 24px; line-height: 1.2em; }
.small-text { font-size: 13pt; line-height: 1.2em; }
.tiny-text { font-size: 9pt; line-height: 1.2em; }
.text-center { text-align: center; }
.text-italics { font-style: italic; }
.text-bold { font-weight: bold; }

h2, h3, h4 {
    margin-top: 10px;
    margin-bottom: 20px;
    font-weight: 500;
    font-family: "Trebuchet MS", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px dotted;
}
a:hover {
    color: #ff0066;
    text-decoration: none;
    font-weight: bold;
}

/* hide or show depending on viewport */
.normal-view { display: none; }
.xs-view { display: inline-block; }

@media screen and (min-width: 840px) {
    .normal-view { display: inline-block; }
    .xs-view { display: none; }
}

.fucking-brand {
    padding-top: 20px;
    font-size: 3.8em;
    font-weight: 900;
    line-height: 1;
}
@media (min-width: 480px) {
    .fucking-brand { font-size: 5em; }
}
@media (min-width: 992px) {
    .fucking-brand { font-size: 6em; }
}

/* blocks */
.padded-block {
    padding: 30px 8px 0;
}
.narrow-block {
    width: 96%;
}
.image-block {
    padding: 20px 0 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 95%;
}
@media screen and (min-width: 640px) {
    .padded-block {
        padding: 30px 0 10px 0;
    }
    .narrow-block {
        width: 50%;
    }
    .center-block{
        transform: translateX(50%);
    }
    .image-block {
        width: 85%;
    }
}

.grey { color: #d3b3b3; }
.sofie { color: #ccff33; }
.neon-red { color: #ff0066; }
.neon-green { color: #ccff33; }
.neon-blue { color: #33ccff; }
