body {
    font-family: 'Ubuntu', sans-serif;
}

section {
    background-color: #f3f4fa;
}
.hero {
    background-color: rgb(172, 172, 176);
    height:100vh;
    color: white;
    font-size:40px;
}
footer {
    height: 160px;
    background-color: green;
    color: white;
    text-align: center;
    padding: 30px;
}


nav {
    display:flex;
    justify-content: space-between;
}

ul {
    display:flex;
    list-style-type: none;
    width: 500px;
    justify-content: space-around;
    font-size: 30px;
}

ul.show {
    display: block;
}

li{
    width:200px;
    text-decoration: none;
}

h1 {
    font-size: 90px;
    font-weight: 500;
    margin: 0;
}

h2 {
    font-size: 50px;
}

p {
    margin: 0px 0px 30px 0;
    font-size: 30px;
}

.subtext {
    font-size: 15px;
    font-weight: 300;
}

.hero-text {
    margin-left: 80px;
    margin-bottom: 200px;
}

.hero-area {
   display: flex;
   height: 100%;
   justify-content: space-between;
   align-items: center;
}

.button {
    width: 200px;
    height: 40px;
    border-radius: 30px;
    background-color: red;
    text-align: center;
    font-size: 30px;
    padding-top: 5px;
}

.button:hover {
   background-color: coral;
}

.button:active {
   background-color: #0000ff;
}

.socials {
    padding-bottom: 200px;
    margin: 20px;
}

.logo {
    height: 80px;
    margin: 20px;
}

.social {
   margin: 40px;
}

.sub-section {
    display: flex;
    justify-content: space-around;
    padding: 80px;
}

.sub-section-alternative {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 80px;
}

.headshot {
    width: 300px;
    border-radius: 150px;
}

.headshot-container {
    display: flex;
    align-items: center;
}

.project-card {
    width: 300px;
    height: 500px;  
    box-shadow: 5px 5px 20px grey; 
    margin: 10px;
}

.project-container {
    display: flex;
    justify-content: space-around;
}

@media screen and (max-width: 1000px) {
   .project-container {
    display: flex;
    flex-wrap: wrap;
   }
}

.project-image {
    margin-top: 25px;
    width: 250px;
    height: 150px;
}

hr {
    margin-left: 20px;
    margin-right: 20px;
}

.project-link {
    text-decoration: none;
    color: darkblue;
}

a {
    text-decoration: none;
    color: white;
}

.hamburger {
    display: none;
}

hamburger:focus {
    outline:0;
}

@media screen and (max-width: 1000px) {
    .hamburger {
        display: block;
        border: 0;
        background-color: transparent;
        color: white;
        font-size: 30px; 
        margin: 20px;
        align-self: flex-end;
    }
}

    ul {
        display: none;
        background-color: #2b2c38;
        margin: 0px;
    }
}

nav {
    display: flex;
    background-color: #2b2c38;
    flex-direction: reverse;
}

.logo {
    display: none;
}