//setup
$width: 800px;
$grey: #ccc;
$pink: #ed1a76;
.reset {
    padding: 0px;
    margin: 0px;
    clear: both;
}

//sections
body {
    @extend .reset;
    font-family: serif;
    font-size: 1em;
    line-height: 1.6;
    transition-duration: .2s;
}

#mast {
    background: none;
    line-height: 1.2;
    color: white;
    a {
        color: white;
        font-style: italic;
    }
    a:hover{
        color: $pink;
    }
    .sub {
        font-style: italic;
        color: $grey;
    }
    img {
        width: 100%;
        max-width: 400px;
    }
}

.copy {
    h1 {
        text-decoration: underline;
        font-style: italic;
    }
}

.nojs {
    body {
        background: white;
    }
    #mast {
        background: black;
    }
}

//standalone elements
p {
    // max-width: 600px;
}

.slide {
    @extend .reset;
    padding: 0px;
    div {
        /*width wrapping*/
        max-width: $width;
        margin: auto;
    }
}

.full {
    height: 100vh;
    width: 100%;
}

.vcwrapper {
    display: table;
}

.arrow {
    font-variant-position: sub;
    font-size: .6em;
}

.arrow:before {
    content: "\0025BC";
}

h1 {
    font-size: 2em;
}

h2 {
    font-weight: normal;
    font-style: italic;
}