body {
    font-family: 'Poppins', sans-serif;
}
section {
    background-color: white;
}

.hero {
    background-color: #1c1d25;
    height: 100vh;
    color: white;
    font-size: 40px;
}

footer{
    background-color: black;
    color: white;
    text-align: center;
    padding: 80px;

}

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

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



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

h1 {
    font-size: 90px;
    margin: o;
    font-weight: 200;
}

h2 {
    font-size: 50px;
    font-weight: 200;
}

p {
    margin: 0;
    font-size: 20px;
    font-weight: 100;
}

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

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

.hero2 {
    margin-left: 80px;
    margin-bottom: 200px;

}

.button {
    width: 200px;
    height: 50px;
    background-color: red;
    border-radius: 25px;
    text-align: center;
    font-size: 30px;
    font-weight: 300;
    padding-top: 5px;
    margin-top: 20px;
}

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

.button:active {
    background-color: orange;
    color: #808080;
}

.socials {
    padding-bottom: 200px;
}

.social {
    margin: 20px;
}

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

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

.pic {
    width: 300px;
    
    border-radius: 150px;
    padding-left: 20px;
}

.photo {
    display: flex;
    align-items: center;
}

.procard {
    width: 200px;
    height: 500px;
    box-shadow: 5px 5px 20px grey;
    margin: 10px;
}

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

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

.proimage {
    margin-top: 25px;
    width: 250px;
    border-radius: 125px;
}

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

.prolink {
    text-decoration: none;
    color: purple;
}

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

.hamburger {
    display: none;
}

.hamburger:focus {
    outline: 0;
}

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

    }

    nav {
        display: flex;
        flex-direction: column-reverse;
        background-color: #3f425b;

    }

    .logo {
        display: none;
    }

    ul.show {
        display: block;
    }
}