body{
    height: 100%;
    padding: 0;
    margin: 15px;
    background-color: #ffffff;
    font-family: 'Assistant', sans-serif;
    font-size: 16px;
}

section{
    padding-top: 10px;
}

footer{
    padding-top: 20px;
    padding-bottom: 10px;
}

section .title{
    font-family: 'Abril Fatface', cursive;
    font-size: 25px;
    text-align: left;
}

.profimg{
    padding-top: 30px;
    border-radius: 5px;
    width: 275px;
    height: 275px;
    object-fit:cover;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#right{
    text-align: right;
}

.projimg{
    margin-top: 5px;
    width: 100%;
}

.container{
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
}

.row{
    display:flex;
    /* flex-wrap:wrap; */
    flex-direction: column;
}

.center{
    justify-content: center;
}

/* #myInput{
    width: 100%;
    padding: 5px 5px 5px 5px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
} */

.search input {
width:100%;
  margin:0.2rem 0 0.8rem 0;
  font-size: 0.9rem;
  padding: 0.5rem;
  border-radius: 1rem;
  border: 1px solid #eeeeee;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 1rem;
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #039BE5;
}

.container nav{
    padding-bottom: 40px;
}

li a {
    margin-right: 1.5rem;
    text-decoration: none;
}

.container li a {
    color: white;
}

[class*=col-]{
    background-color:white;
    color:black;
    border:1px solid white;
    flex-basis: 100%;
}

a {
    text-decoration: none;
    color: #039BE5;
}

h1{
    text-align: center;
}

.java {
    background-color: #FFCDD2;
    color: #B71C1C;
}

.python {
    background-color: #C8E6C9;
    color: #1B5E20;
}

.html {
    background-color: #D1C4E9;
    color: #311B92;
}

.css {
    background-color: #B2EBF2;
    color: #006064;
}

.javascript {
    background-color: #FFE0B2;
    color: #E65100;
}

.tag {
    display: inline-block;
    border-radius: 2px;
    margin: 5px 5px 5px 0px;
    padding: 2px 4px 2px 4px;
    /* background: #eeeeee; */
}

.subt {
    font-size: 18px;
    margin-bottom: 4px;
}

.sub {
    margin-right: 20px;
}

footer{
    text-align: center;
}

/* Media Queries */
@media only screen and (min-width: 768px) {
    .col-1 {flex-basis: 8.33%;} 
    .col-2 {flex-basis: 16.66%;}
    .col-3 {flex-basis: 25%;}
    .col-4 {flex-basis: 33.33%;}
    .col-5 {flex-basis: 41.66%;}
    .col-6 {
        flex-basis: 50%;
    }
    .col-7 {flex-basis: 58.33%;}
    .col-8 {flex-basis: 66.66%;}
    .col-9 {flex-basis: 75%;}
    .col-10 {flex-basis: 83.33%;}
    .col-11 {flex-basis: 91.66%;}
    .col-12 {flex-basis: 100%;}

    .row{
        flex-direction: row;
    }

    .projimg{
        margin: 2px;
        width: 100%;
    }

    h1{
        text-align: left;
    }
    
    .title{
        margin-block-end: 0.5em;
    }
  }