html {
    font-size: 100%;
}
body{
    /*over all page styling*/ 
    background-image: linear-gradient(270deg, black, grey);
    margin: 0;
    padding: 1%

            
}

p{
    /*main styling for body text*/
    font-size: 100%;
    font-family: 'Mitr',sans-serif;
    color: white;
    line-height: 2.5;
    font-weight: 300;
    text-align: left;
}

h1{ 
    /*styling for heading 1 */
    font-size: 130%;
    font-family: 'Mitr', sans-serif; 
    color:white;
    margin-top: 0px;
    letter-spacing: 5px;
}


h2{
    /*styling for heading 2*/
    font-size: :200%;
    font-family: 'Mitr', sans-serif;
    color: white;
    text-align: center;
    font-weight:400;
}


h3{
    /*styling for heading 3*/
    font-size: 120%;
    font-family: 'Mitr', sans-serif; 
    color:white;
    line-height: 2 rem;
    text-align: center;
    font-weight: 100
    
}


h4{
    /*styling for heading 4*/
    font-size: 90%;
    font-family: 'Mitr',sans-serif;
    color: white;
    line-height: 2.5;
    font-weight: 200;
    text-align: center;
}


h5{
    
}


h6{
    
}

.nav-bar ul{
    /*Navigation bar unlinked list styling*/
    font-size: 150%;
    font-family: 'Mitr', sans-serif; 
    line-height: 1.5rem;  
    left: 0;
    top: 0;
}

.logo{
    /*fixed logo styling*/
    position: fixed;
    display: inline-block;
    float: left;
    width: 50px;
    height: 50px;
    margin-right: 50px;
    margin-top: -30px;   
    z-index: 100;
}

nav a {
    /*Navigation styling and link placement*/
    text-decoration: none;
    color:white;
    float: left;
    margin-left: 75px;
    margin-top: 15px;
    
}


nav a:hover {
    /*Hover elent fot nav items*/
  color: darkgrey;
}

ul {
    /*Overal unlinked list styling*/
    list-style-type: none;
    padding: 0px;
    position:fixed;
    width: 100%;
    overflow: hidden;
    box-shadow: 12px 12px 20px 1px rgba(0,0,0,.5);
    z-index: 10 ;
    box-sizing: border-box;
    background-color: rgba(51,51,51,1);
    margin-top: 0px;

    
}

.landing{
    /*landing class styling*/
    margin: 1%;
    padding: 5%;
    width: 55;
    text-align: center;
    float: left;
}

.name{
    /*stlying for name box on landing and positioning*/
    font-size: 450%;
    font-family: 'Mitr', sans-serif; 
    line-height: 4.2rem;
    position: absolute;
    top: 60%;
    left: 38%;
    transform: translate(-50%, -50%);
    text-align: left;
    color:white;
}

.tagline{
    /*stlying for tagline box on landing and positioning*/
    font-size: 150%;
    font-family: 'Mitr', sans-serif; 
    line-height: 4.2rem;
    letter-spacing: 30px;
    position: absolute;
    top: 74%;
    left: 38%;
    transform: translate(-50%, -50%);
    text-align: center;
    color:white;
    background-color: black;
    border-radius: 35px;
    width: 370px;
    height: 60px;
}
.row{
    /*POSITIONNING for image grid rows in work*/
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
}

.column{
    /*POSITIONING for image grid column in work*/
    flex:25%;
    padding: 0 4px;
    position: relative;
    transition:transform 0.25s ease;

}

.column img{
    /*POSITIONING for images in image grid column in work*/
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
    
    
}



/*REALLLY LIGHT RESPONSIVE CODE JUST TO HELP WITH THE IMAGE GRID plz dont doc :( left margin and sizing*/
@media screen and (max-width: 800px) {
  .column {
    flex: 50%;
    max-width: 25%;
  }
}

/*REALLLY LIGHT RESPONSIVE CODE JUST TO HELP WITH THE IMAGE GRID plz dont doc :( right margin and sizing*/
@media screen and (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 75%;
  }
}

.work{
    /*work class stlying*/
    padding: 5%;
    margin: 0 auto;
    max-width: 50%;
    max-height: auto;
}

landing {
    /*fun lading animation lets hope this works :)*/
            animation: fadeInAnimation ease 3s;
            animation-iteration-count: 1;
            animation-fill-mode: forwards;
            
        }
        @keyframes fadeInAnimation {
            0% {
                opacity: 0;
            }
            100% {
                opacity: 1;
            }
        }
.about{
    /*about class styling */
    margin-left: 100px;
    padding-left: 100px;
    padding-right: 100px;
    margin-right: 100px;
    padding-bottom: 25px;
}

.dream{
    /*dream gif styling*/
    margin-top: 50px;
    margin-left: 50px;
    float: right;
    margin-bottom: 5%;
}

.projects{
    /*projects class styling*/
    padding: 5%;
    margin-left: 100px;
}

socials{
    /*social media styling*/
    padding: 5%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 10%;
}
