*{
    border: 0;
    margin: 0;
    scroll-behavior: smooth;
    font-family: 'Courier New', Courier, monospace;
    box-sizing: border-box;
}
#navbar{
    background-color: #000;
    display: flex;
    justify-content: flex-end;
    position: fixed;
    width: 100vw;
    z-index: 1;
}
#navbar > ul {
    display: flex;
    list-style: none;
}
#navbar > ul > li > a{
    display: inline-block;
    padding: 1.5em 1.5em;
    text-decoration: none;
    color: #fff;
    font-size: 1.25rem;
    font-weight: bold;
}

@media only screen and (max-width: 1000px){
    #navbar > ul > li > a{
        padding: 1em 1em;
        font-size: 1.25rem;
    }
    #projects > div > a {
        width: 50%;
    }
}
@media only screen and (max-width: 700px){
    #projects > div > a {
        width: 100%;
    }
    #links{
        font-size: 0.75em;
    }
}
#welcome-section{
    background: linear-gradient(rgb(224, 224, 224), rgb(255, 255, 255));
    height: 100vh;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
#projects{
    background-color: #000;
    color: #fff;
    padding: 4em 1em 4em 1em;
}
#contact{
    height: 80vh;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
.title{
    font-size: 3em;
    font-weight: bold;
}
.title2{
    font-size: 3em;
}
.title3{
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    padding-bottom: 1em;
    padding-top: 1em;
}
.title4{
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    padding-top: 1em;
    text-decoration: none;
}
.title4 > a{
    color: #fff;
}
.descriptiontitle{
    font-style: italic;
    font-size: 1.38em;
    font-weight: bold;
    padding: 0.5em;
}
#links a:hover , #projects-grid img:hover{
    transform: translateY(-5px);
}
#links{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5em;
}
.nones{
    font-style: none;
    font-style: normal;
}
#links > a {
    text-decoration: none;
    padding: 2em;
    font-size: 1.5em;
    font-weight: bold;
    color: #000;
    transition: transform .5s;
}
footer{
    background-color: #808080;
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100vw;
    font-style: italic;
    color: white;
    font-size: 0.85em;
    font-weight: bold;
}
footer > div > p > a {
    color: white;
}
footer > div {
    max-width: 80vw;
    padding: 2em;
}
#projects-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
#projects-grid img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    padding: 0.5em;
    border-radius: 15px;
    transition: transform .5s;
  }
#projects-grid a{
    width: 30%;
    height: 300px;
    object-fit: cover;
    transition: transform .5s;
}
