body {
    margin: 0;
    height: auto;
    background-color:  #adadad;
    font-family: 'Montserrat',
    sans-serif;
}
#container {
    max-width: 900px;
    margin: auto;
    box-shadow: 30px 0 40px rgba(0,0,0,0.4),
    -30px 0 40px rgba(0,0,0,0.4);
}
h1 {
    font-weight: 400;
    font-size: 2.5rem;
    text-transform: capitalize;
    margin: 0;
}
h2 {
    font-weight: 400;
    font-size: 1.5rem;
    text-transform: uppercase;
    margin: 0;
}
img {
    display: block;
    width: 100%;
}
#intro {
    background: white;
}
#introContent {
    display: flex;
    flex: 0 1 40vw;
    height: 50vh;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-left: 1rem;
    padding-right: 1rem;
}
#introText h2{
    color: #888;
}
#introImage {
    margin: 0;
    background-image: url(../images/unsplash-image.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 50vh;
    flex: 0 1 60vw;
}

.btn {
    text-decoration: none;
    color: rgba(0,82,187);
    display: inline-block;
    padding: 0.5rem 2rem;
    border: 1px solid #eee;
    border-radius: 50px;
    text-align: center;
    margin-top: 0.5rem;
    transition: background 500ms ease;
}

.btn:visited {
    color: rgba(0,82,187);
}

.btn:hover{
    background: rgb(36, 36, 36);
    color: #eee;
    border: 1px solid rgb(36, 36, 36);
}

.header {
    padding: 1.5rem;
    text-align: center;
    background-color: #333;
    color: white;
}

.header h2 {
    border-left: 1px dotted white;
    border-right: 1px dotted white;
    display: inline-block;
    padding-left: 1rem;
    padding-right: 1rem;
}

#aboutMeContent {
    align-items: center;
}

#aboutMeContent img {
    height: 200px;
    width: 200px;
    margin: 1vh auto;
}

.work {
    padding: 7.5px 15px 7.5px;
}

#first {
    padding-top: 15px;
}
#last {
    padding-bottom: 15px;
}

.work img{
    border-top: 2px solid black;
}

.subHeader {
    background: white;
    padding: 0.8rem;
    text-align: center;
}

h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: #333;
}


.content {
    padding: 0.8rem;
    text-align: center;
    min-height: 175px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: rgb(36, 36, 36);
    color: #eee;
}

a {
    text-decoration: none;
    color: rgba(0,82,187);
}
a:visited {
    color: rgba(0,82,187);
}

.contactContent {
    display: flex;
    background-color: rgb(36, 36, 36);
    padding: 0.8rem;
    min-height: 175px;
    justify-content: space-evenly;
    align-items: center;
    
}

.logo {
    width: 50px;
}

@media ( min-width: 500px) {
    #intro {
        display: flex;
        height: 100%;
    }
    .btn {
        margin-top: 1rem;
    }
    #introContent {
        height: 100vh;
    }
    #introImage {
        height: 100vh;
    }
}

@media (min-width: 700px) {
    .btn {
        padding: 0.5rem 3rem;
        margin-top: 2rem;
    }

    #aboutMeContent {
    display: flex;
    align-items: center;
    }

    #aboutMeContent img {
    height: 200px;
    width: 200px;
    border-radius: 50%;
    margin: 1vh 3vw;
    }

}