/* GLOBAL STANDARD TAGS */

html, body {
    background-color: rgb(13,13,25) ;
    cursor: url("../images/cursor.png"), auto !important; 
    font-family: 'SquadaOne', Impact, sans-serif !important;
    
    touch-action: none;
    overflow: hidden;
    overscroll-behavior: none;

}
body {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;

    height:100%;
    width: 100%;
    max-height: 100vh;
    max-width: 100vw;

    margin:0;
}
button {
    text-decoration: none;
}
a {
    text-decoration: none;
    margin: auto;
    background-color: rgba(128, 0, 128,.5);
    
    
}

@font-face {
    font-family: 'SquadaOne';
    src: url(../fonts/Squada_One/SquadaOne-Regular.ttf) format('truetype');
}

/* IDS */




/* CLASSES */

.container_all {
    display:flex;
    flex-flow: column wrap;

    background-color: #0d0d18;
    
    
    height: 98vh;
    width: 100vw;

    margin:auto;

    

    overflow: hidden;

}

.homebutton {
    /* position */
    display: flex;
    align-self: flex-start;
    justify-self: flex-start;
    align-items: center;
    justify-content: center;
    position:relative;
    margin:2%;

    /* hides anything outside of box of button */
    overflow: hidden;

    /* background color + text color */
    background-color: gold;
    color: purple;
    
    /* border */
    border: none;
    border-radius: 5px;

    /* shadow */
    box-shadow: 3px 3px 5px purple;

    /* font */
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    font-size: 3vw;
    white-space: nowrap;

    /* size */
    width: fit-content;
    height:fit-content;
    padding: .5vw;

    /* transition */
    transition-duration: .3s;
}

.projects_container {
    display: flex;
    contain: content;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    

    /* position */
    justify-self: center;
    align-self: center;
    position: absolute;
    left:10vw;
    right:10vw;
    bottom:20vh;
    top:20vh;

    /* size */
    width: 80vw;
    height: 60vh;
    
    /* color */
    background-color: rgba(59, 26, 94,0.3);

    border-radius: 50px;



}

.project {
    color: #e4c141;

    position: relative;
    align-self: baseline;
    text-align: center;
    justify-items: flex-start !important;
    justify-self: center;
    border-radius: 20px;
    
    
    white-space: nowrap;
    text-decoration: none;
    padding: 1%;
    padding-bottom: 0;
    font-size: 3rem;
    width: 100%;
    margin-left: -1%;
    height: 9vh;
    box-shadow: 1px 1px 5px 3px rgba(204, 0, 255, 0.2);


    
}


/* CONDITIONALS */ 

@media only screen and (max-width: 767px) {
    .project {
        font-size: 4.5vh;
        padding: 2vh;
        font-size: 2em;
    }


    .homebutton {
        height: 4vh;
        width: 20vw;
        margin-top: 1%;
        margin-bottom: 1%;
        font-size: 2em;
        
    }

    .container_title {
        float: right;
        width: 11.5ch;

        font-size:8.5vw;

        -webkit-animation: typing 6s steps(23, end), blink-caret .5s step-end infinite alternate;
    }
    
}

.homebutton::before {

    /* size */
    width: 20vw;
    height: 50vw;

    /* color */
    background-color: orange;
    mix-blend-mode:darken;

    /* border */
    border-radius: 40%;

    /* position */
    left: -200%;
    top: 90%;
    position: absolute;

    /* transition */
    transition-duration: .3s;

    /* ??? */
    content: "";
}

.homebutton:hover::before {
    transition-duration: .3s;
    transform: translate(50%,-90%);
    
}

.homebutton:focus {
    transform: translate(5px,5px);
    transition-duration: .3s;
}

.project:hover {
    color:orange;
}

