* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/*
    A01 - Stuff to reference later
*/

@font-face {
    /*Screw Firefox*/
    font-family: 'Open';
    src: url('fonts/OpenSans-Regular.ttf');
}

@font-face {
    font-family:'OpenSemiBold';
    src: url('fonts/OpenSans-SemiBold.ttf');
}

@keyframes show-up {
    from {
        transform: translate(0, 30vh);
        opacity: 0;
    }

    to {
        transform: translate(0);
        opacity: 1;
    }
}

@keyframes fade-down {
    from {
        transform: translate(0);
        opacity: 1;
    }

    to {
        transform: translate(0, 30vh);
        opacity: 0;
    }
}

/**/

body {
    display: flex;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

#bkg {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: fixed;
}

.content {
    display: flex;
    justify-content: center;
    width: inherit;
    height: inherit;
    position: absolute;
    flex-direction: column;
}

#logo {
    max-height: 25vh;
    max-width: 90vw;
    margin-left: auto;
    margin-right: auto;
}


/*
    Blog Content ---------------------------------------------------------------------------------
*/
.blog {
    margin: 0 12px;
}

.post {
    background-color: rgba(255, 255, 255, 0.8);
    width: auto;
    max-width: 960px;
    height: auto;
    border-radius: 16px;
    font-family: 'Open';

    margin: 12px 0;
    margin-left: auto;
    margin-right: auto;
    padding: 12px;
    font-size: 18px;
}

.postDate {
    color: #AB00C9;
    font-family: 'OpenSemiBold';
}

.postTitle {
    font-size: 21px;
}

.postTag {
    font-size: 14px;
}

.postTag ul li {
    list-style: none;
    color: #AB00C9;
}

#blog-pic {
    max-width: 100%;
    margin: 8px 0;
}

.see-more {
    color: #AB00C9;
    font-family: 'Open';
    font-size: 18px;
    margin: 8px auto 24px auto;
}

.space {
    display: flex;
    width: inherit;
    height: 10vh;
    min-height: 48px;
    bottom: 0;
}

/* 
    Mobile Menu 
*/

.mobile-menu-bar {
    position: fixed;
    background-color: #DAFFCF;
    z-index: 1;
    width: 100vw;
    height: 6vh;
    min-height: 48px;
    bottom: 0;
}

#menu-items {
    display: flex;
    height: 6vh;
    min-height: 48px;
    justify-content: space-around;
    align-items: center;
    
}

#menu-items li {
    list-style: none;   
}

#menu-items li img {
    height: 4vh;
    min-height: 32px;
    width: auto;
}

#draw-menu {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.5);
    width: inherit;
    height: 100vh;
    z-index: 0;
}

#link-viewer {
    position: fixed;
    font-family: 'Open';
    font-size: 21px;
    width: inherit;
    
}

#link-viewer li {
    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #F3FFF0;
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-color: #9AE59A;

    height: 8vh;
    min-height: 48px;
    width: inherit;
    
    list-style: none;
}

#link-viewer li:first-child {
    border-top: 2px solid;
    border-color: #9AE59A;
}

#link-viewer li:last-child {
    border-bottom: 2px solid;
    border-color: #9AE59A;
}

#link-viewer.appear {
    animation: show-up 0.2s;
}

#link-viewer.disappear {
    animation: fade-down 0.2s;
}

/*
    A0 - Home Exclusive
*/
.project-btn {
    display: flex;
    justify-content: center;
    align-items: center;

    height: 80px;
    width: 92%;
    max-width: 720px;
    background-color: #C573D8;
    border-radius: 16px;

    margin-left: auto;
    margin-right: auto;
    margin-top: 7vh;
    margin-bottom: 3vh;

    font-family: "Open";
    font-size: 21px;
    color: white;
}

/*
    A0 - Games Exclusive ------------------------------------------------------------------------------------------
*/
.p-tag {
    font-family: "Open";
    font-size: 24px;
    color: #AB00C9;
    text-align: center;
    margin-top: 12px;
    margin-bottom: 12px;
}


.projects {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    
    width: 95vw;
    max-width: 720px;
    height: auto;
    font-family: 'Open';
    font-size: 21px;

    margin-left: auto;
    margin-right: auto;

    list-style: none;
}

.projects li {
    position: relative;  

    margin: 12px 12px;
    padding: 12px;

    display: flex;
    justify-content: center;

}

.projects li img {
    object-fit: cover;
    width: inherit;
    max-width: 100%;
}

#p-text {
    color: white;
    position: absolute;
    bottom: 24px;
    left: 24px;
}

/*
    A0 - Desktop UI
*/
@media screen and (max-width: 960px) {
    #desktop-menu {
        display: none;
    }

}

@media screen and (min-width: 961px) {
    .mobile-menu-bar {
        display: none;
    }

    .project-btn {
        display: none;
    }

    #desktop-menu {
        margin-top: 7vh;
        margin-bottom: 3vh;
        width: 100%;
    }

    #dlink-viewer {
        background-color: rgba(255, 255, 255, 1);
        font-family: "Open";
        font-size: 36px;
        list-style: none;
        width: 100%;

        padding: 12px 8vw;

        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }

    #desktop-floatmenu {
        position: fixed;
        top: 0;
        margin-top: 0;
        width: 100%;
        z-index: 2;
    }

    #dlink-viewer li:hover {
        color: #AB00C9;
    }
}

/*
    A0 - Anything with a hidden or invisible tag
*/

.hidden {
    display: none;
}

.invisible {
    visibility: hidden;
}