body, html{
    height: 100%;
    width: 100%;
    /* overflow-x: hidden; */
    overflow-y: auto;
    scroll-behavior: smooth;
}

body{
    padding: 0;
    margin: 0;
    background: radial-gradient(2179.54px at 31.11% 22.46%, #131111 0%, rgba(19, 17, 17, 0.815) 100%);
    /* background-repeat: no-repeat; */
    background-attachment: fixed;
}

.main{
    flex-direction: row;
}

.non-container{
    flex-direction: row;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
}

.flex-container{
    display: flex;
    /* justify-content: space-between; */
    margin-bottom: 0;
}

.top{
    height: 100%;
    justify-content: center;
    flex-direction: column;
}

.center{
    display: inline;
    position: relative;
    padding-top: 10vh;
}

.name-text{
    display: block;
    font-family: 'Didact Gothic', sans-serif;
    font-style: normal;
    font-weight: bolder;
    font-size: 10vh;
    line-height: normal;
    white-space: nowrap;
    text-decoration: none;
    text-align: center;
    color: rgb(255, 255, 255);
}

.icon-container{
    flex-direction: column;
    padding: 0.7rem;
    text-align: center;
    /* justify-content: center; */
}

.icon{
    color: #6d00fc;
    padding-bottom: 0.7rem;
}

.icon-tray{
   justify-content: center;
}

.middle{
    text-align: center;
}

.text{
    color: #ffffff;
    font-family: 'Nanum Gothic Coding', monospace;
    font-size: 5em;
    font-weight: bold;
    justify-content: center;
}

.projects{
    padding: 3vh 0;
}

.project-text{
    text-align: center;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 6vh;
    color: #ffffff;
}

.project-link{
    justify-content: center;
    text-align: center;
    list-style-type: none;
    font-size: 3vh;
}

.project-name{
    text-align: center;
    align-self: center;
    cursor: pointer;
    font-family:'Roboto Mono', monospace;
    color: rgb(20, 17, 199);
}

.icon-text{
    color: #ffffff;
    font-family: 'Courier New', Courier, monospace;
}

.social-icon{
    color: #ffffff;
    padding: 4px;
}

.contact-tray{
    flex-direction: column;
    padding: 10vh;
}

.left-side{
    float: left;
}

.right-side{
    float: right;
}

.icon-flipped{
    transform: scaleX(-1);
}

@media only screen and (max-width:600px) {
    body{
        font-size: 5vh;
    }
    
    .main{
        flex-direction: column;
    }
    
    body .social-icon{
        font-size: 4vh;
    }

    body .top{
        padding-bottom: 20vh;
    }

    .contact-tray{
        flex-direction: row;
        justify-content: center;
        padding: 0vh;
    }

    body .icon-container{
        padding-top: 0;
        font-size: 1.6vh;
    }

    .name-text{
        font-size: 5vh;
    }

    .text{
        font-size: 4vh;
        line-height: 0.7;
    }

    .project-text{
        font-size: 3vh;
    }

    .project-link{
        font-size: 2vh;
    }

    .flex-comp:nth-of-type(1){
        order:2;
    }

    .flex-comp:nth-of-type(2){
        order:1;
    }

    .flex-comp:nth-of-type(3){
        order:3;
    }
}