:root{
    
    --primary: #000000;
    --secondary: #ffffff;
    --tertiary: #585757;

}

html, body {

    overflow: auto;
    margin: 0;

}

body {

    background-color: var(--primary);

}

.defaultIframe {
    
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    border: 0;
    z-index: -1;

}

.defaultText {

    white-space: nowrap;
    margin: 0;
    text-shadow: 0 1px 2px black, 0 0 5px black;
    font-family: "Oswald";
    color: var(--secondary);

}

.seperator {

    border: none;
    height: 1px;
    margin: 10px 20px;
    background: var(--tertiary);

}

.vseperator {

    width: 1px;
    height: 90%;
    align-self: center;
    background: var(--tertiary);

}

#content {

    position: fixed;
    inset: 0;

}

#background {

    position: fixed;
    inset: 0;
    opacity: 0.08;
    background-position: 0 0;
    background-image: url("../images/background.png");
    background-repeat: repeat;
    background-size: 100vw 100vh;
    z-index: -9999;
    animation: scroll 20s linear infinite

}

@keyframes scroll {
    from {
        background-position: 0 0;
    }
    to {
        background-position: -100vw;
    }
}

@keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    };
}

@keyframes slideFade {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}