body {
    background-color: #151D3B;
    font-family: "Poppins", sans-serif;
}
#navbar{
    position: fixed;
    left: 0;
    z-index: 100;
    width: 100%;
    background-color: #B8405E;
    top: 0;
}
#navbar a{
    padding: 20px 10px 20px 10px;
    color: white;
    text-decoration: none;
    float: right;
}
#navbar a:hover{
    background-color: blue;
}
#welcome-section{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 2rem;
}
.stacked{
    padding: 0;
    margin: 0;
    text-align: center;
}
#projects{
    background-color: #6EBF8B;
}
#projects p{
    text-decoration: underline;
    text-align: center;
    font-size: 2rem;
    overflow: auto;
    padding-top: 20px;

}
#grid1{
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.row{
    border-style: solid;
}
.col1{
    flex: 0 0 25%;
    margin-top: 10px;
    margin-right: 10px;
}
.col1 img{
    height: 80%;
    width: 100%;
}

@media only screen and (max-width: 768px){
    .col1{
        flex: 0 0 95%;
        margin-top 10px; 
        margin-right 10px;
    }
    #contact-list a span{
        display: none;
    }

}
#Contact{
    background-color: #008E89;
    display: flex;
    font-size: 2rem;
    flex-direction: column;
    align-items: center;
    height: 80vh;
    justify-content: center;
    overflow: hidden;
}
#Contact a{
    padding: 20px;
    text-decoration: none;
}
#Contact a img{
    height: 1em;
    width: 1em;
}

#contact-list{
    margin-top: 20px;
    color: black;
}
#contact-list a{
    color: inherit;
}
.nametag {
    text-align: center;
    padding: 20px;
    font-family: Fantasy, monospace, roboto;
    font-weight: bold;
    font-size: 1.5em;
}

