/*brown : #6f5858 blue : #b0e0e6*/

* {
    box-sizing: border-box;
    font-family: 'Consolas', 'Courier New', monospace;
}

body {
    background-color: #17535e;
    margin: 0 auto;              /* bring the layout to the top and bottom edges */
}                            /* and then center it */

h1,h2,h3,h4,h5 {
    /* text-transform: lowercase; */
    font-weight: 800;
    padding: 0;
}

a {
color: #1292a9;
    &:hover {
    color: #bd883d;           /* change the color when hovered over */
    }
}

div {                         /* all containers have this style scrollbar */
    scrollbar-color: #1292a9 transparent;
    scrollbar-width: thin;
}

.main {                       /* the wrapper for the entire layout */
    background-color: #fff;
    font-size: 0.8rem;
    width: 80%;
    height: fit-content;
    /*height: 500px;                /* fixed height for floating affect */
    margin: 10vh auto;
    padding: 0;
    overflow-y: hidden;           /* disable scrolling, cut off layout at the */
    border-radius: 2vh; 
}                             /* bottom for a neat look */

.header {
    background-color: #1292a9;
    color: #fff;
    width: 100%;                  /* 100% of the wrapper’ */
    /* height: 100px; */
    margin: 0 auto;
    padding: 1rem;
    text-align: center;
    .logo {
        width : 15rem;
        height: auto;
    }
    img {
        width : 1.5rem;
        margin: -0.25rem auto;
        height: auto;
    }
}

#gameWork {
    background-color: #b13131;
}

#project {
    background-color: #bd883d;
}
.content {
    background-color: #fff;
    color: #444;
    /* height: 300px; */
    width: 100%;
    padding: 1rem;                /* create a 1em gutter on all sides */
    text-align: center;
    /*overflow-y: scroll;          /* make only the content section scrollable */
    h1,h2,h3,h4,h5  {
        color: #bd883d;
    }
    
}

#intro{
    font-size: 1rem;
}

.footer {
    background-color: transparent;
    border-top: 1px dashed #1292a9; /* border to separate disclaimer from page text */
    color: #444;
    font-size: 0.7rem;             /* smaller font compared to page text */
    margin: 1em;            	 /* space between top and bottom of container */
    text-align: center;
}

.navigation {				 /* navigation row */
    background-color: #1292a9;
    color: #fff;
    width: 100%;
    padding: 0;
    margin: auto;
    text-align: center;
    p {
        
        font-size: 1vw;
        margin : 0vw;
        display: inline-block;
    }

    a {
        color: #fff;
        text-decoration: none;
    }
    li,ol,ul {
        width: 15%;            	 /* width is a percentage of the wrapper */
        display: inline-block;   /* display links side-by-side */
        text-transform: lowercase;
        padding: 0;
        img {
            width: 1rem;
            height: auto;
            margin: -0.25rem auto;
        }
    }
    h1,h2,h3,h4,h5 {
        padding: .5rem;
        margin: 0;
        text-align: center;
        display: inline-block;
        &:hover {
            background-color: #17535e;
            border-radius: 1vh; 
            letter-spacing: .1rem;  /* separate letters on hover */
        }
    }
}

.projectHolder {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem; 
    width: 100%;
    border-bottom: 1px solid #b13131;
    margin-top: 1rem;

}

.projectHolder_Last {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem; 
    width: 100%;
    margin-top: 1rem;

}

.projectHolder_Text {
    text-align: left;
    h3{
        display: inline;
        
    }
    max-width: 50%;
}

.projectImg {
    width: 25rem;
    height: auto;
    margin-bottom: 1rem;
}


@media screen and (max-width: 800px) {
    .navigation {
        p {
            /* display: none; */
            font-size: 0rem;
            transition: font-size 0.3s;
        }
        li,ol,ul{
            img {
                width: 2rem;
                height: auto;
                margin: 0rem auto;
                transition: width 0.3s, height 0.3s;
            }

        }
    }

    .projectHolder,.projectHolder_Last {
        display: block;
        justify-content: center;
        width: 100%;

    }
    .projectHolder_Text {
        text-align: left;
        h3{
            display: inline;
            
        }
        max-width: 100%;
    }
    .projectImg {
        width: 80%;
        height: auto;
    }
} 