body{
    background-color: #081424;
}

.navigation-bar{
    background-color: #2d333b;
    height: 50px;
    display: flex;
    justify-content: center;
}

.nav-link{
    color: aliceblue;
}

.hero{
    background-color: #22272e;
    min-height: 70vh;
    color: aliceblue;
}

#profile{
    border-radius: 50%;
    height: 400px;
    width: 380px;
    object-fit: cover;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.hero--content{
    width: 400px;
    margin: 0 auto;
    padding-top: 3em;
}

.hero--content--intro{
    display: block;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.intro--name{
    padding-top: 1em;
    text-align: center;
}

.hero--content--subheadline{
    padding-top: 1em;
    text-align: center;
}

.description{
    font-size: 25px;
}

.slogan{
    font-size: 17px;
    padding-bottom: 1em;
}

.projects-wrapper{
    padding-top: 1em;
    display: flex;
    justify-content: center;
}

.project--column{
    padding-left: 2%;
    padding-right: 2%;
    width: 100%;
}

.project--thumbnail{
    width: 80%;
}

.project--body{
    background-color: aliceblue;
    width: 80%;
}

.projects{
    padding-top: 1em;
    color: aliceblue;
    text-align: center;
}

.container{
    height: 35vh;
}

.container--two{
    background-color: aliceblue;
    height: 80vh;
    color: #2d333b;
}

.about--skills--wrapper{
    padding-top: 2em;
    display: flex;
    justify-content: center;
}

.about--wrapper{
    padding-left: 1em;
    text-align: center;
    width: 40%;
}

.skills{
    text-align: center;
}

.skills--wrapper{
    display: block;
    justify-content: center;
    width: 60%;
}

.skills-columns{
    padding-bottom: 1em;
    display: inline-flex;
    justify-content: center;
    width: 100%;
}

.skill--column{
    padding-left: 2%;
    padding-right: 2%;
    display: flex;
    width: 300px;
}

.skill--thumbnail{
    width: 30%;
}

.skill--body{
    width: 50%;
    padding-left: 1em;
}

@media (max-width: 1200px) {

    .about--skills--wrapper{
        display: inline-block;
        justify-content: center;
        width: 100%;
    }

    .about--wrapper{
        text-align: center;
        padding-left: 0em;
        width: 100%;
    }

    .skills--wrapper{
        text-align: center;
        width: 100%;
    }

    .hero--content{
        width: 100%;
        margin: 0 auto;
        padding-top: 3em;
    }

}