/* CUSTOMIZATION */

#main article.active {
    background-color: #343434;
}

#main article.active>* {
    background-color: #343434;
}

#header .logo {
    border: solid 2px #ffffff;
}

#header .content p {
    line-height: 1.75;
}

p {
    margin: 0 0 1rem 0;
}

button#doCollab {
    text-align: center;
    display: inline-block;
    box-shadow: 0 0 1px;
    margin-left: 65%;
}

#myName {
    height: 60px;
    width: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#myName:hover {
    opacity: .5;
}

#logoFX {
    z-index: 3;
    text-decoration: none;
}

.linkReset {
    border: none;
}

#logoFX:hover {
    opacity: .3;
}

.socialBlock {
    font-size: 22px;
    text-align: center;
}

#glyph {
    margin: auto 0;
    vertical-align: middle;
}

#glyph {
    -webkit-animation: fadeinout 1.1s linear forwards;
    animation: fadeinout 1.1s linear forwards;
    -moz-animation: fadeinout 1.1s linear forwards;
    -o-animation: fadeinout 1.1s linear forwards;
    -ms-animation: fadeinout 1.1s linear forwards;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

#influences {
    max-width: 100%;
    height: 70%;
    width: 70%;
    display: block;
    margin: auto auto;
}

#header nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.175);
}




/* main hover shit */

.overText {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: #000000;
    z-index: 2
}

.text2 {
    padding-top: 100px;
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}




/* fade */

@-webkit-keyframes fadeinout {
    0%,
    100% {
        opacity: .2;
    }
    50% {
        opacity: 1;
    }
}

@keyframes fadeinout {
    0%,
    100% {
        opacity: .25;
    }
    50% {
        opacity: 1;
    }
}

.image:before {
    background-image: none;
}

.mobileBR {
    display: none;
}


/* MOBILE ONLY CSS */


/* iPhone Portrait and Landscape */

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
    button#doCollab {
        margin-left: 35%;
    }
    .mobileBR {
        display: block !important;
        padding: 3px;
    }
    #found {
        line-height: 3 !important;
    }
}




/* Galaxy Portrait and Landscape */

@media screen and (device-width: 320px) and (device-height: 640px) and (-webkit-device-pixel-ratio: 2) {
    button#doCollab {
        margin-left: 35%;
    }
    .mobileBR {
        display: block !important;
        padding: 3px;
    }
    #found {
        line-height: 3 !important;
    }
}




/* HTC */


/* HTC Portrait and Landscape */

@media screen and (device-width: 360px) and (device-height: 640px) and (-webkit-device-pixel-ratio: 3) {
    button#doCollab {
        margin-left: 35%;
    }
    .mobileBR {
        display: block !important;
        padding: 3px;
    }
    #found {
        line-height: 3 !important;
    }
}




/* don't under links for buttons */

.noBorder {
    border-bottom: none;
}