body {
    font-family: 'Comfortaa', cursive;

}

section {
    /*height: 500px;*/
    background-color: white;
    border: solid black 1px;
}

.hero {
    background-color: #1c1d25; /*the colour of the section with hero class, overwrites the properties of the normal class
                                    change later*/
    height: 100vh;   /* 75% of the view height is taken*/
    color:white;
    font-size: 40px;
}

footer {
    height: 500px;
    background-color: #1c1d25;;
    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;     /*justify the space between the things in nav */
    font-size: 30px;
}

ul.show {
    display: block;
}

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

h1 {
    font-size: 90px;
    margin: 0;
    margin-bottom: 20px;   /*i 
    put this, delete if messes up*/
}

h2 {
    font-size: 60px;
}

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

.subtext {
    font-size: 20px;
    font-weight: 300; /*used in projects*/
}

.hero-area {
    display: flex;  /* flexible based on the height of any user browser*/
    /*flex-direction: column;*/
    height: 100%;
    justify-content: space-between;
    align-items: center;
}

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

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

.button:hover {
    background-color: #ef744b;
}

.button:active {
    /*background-color: #A9A9A9A9;*/
    color: #808080
}

.socials {
    padding-bottom: 200px;
}

.logo {
    height: 100px;
    margin: 30px
}

.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 rgb(1, 12, 75);
    margin: 10px;
}

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

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

.project-image {
    margin-top: 25px;
    height: 200px;
    width: 250px;
    border-radius: 125px;
}

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

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

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

svg {
    padding: 10px;
    color: white;

}

.hamburger {
    display: none;
}
.hamburger:focus{
    outline: 0;
}

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

    ul.show {
        display: block;
    }

    nav {
        display: flex;
        flex-direction: column-reverse;
        background-color: #383a4a;

    }

    .logo {
        display: none;
    }
}

