body {
    margin: 0;
    background-color: #F4D8CD;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 200;
    border-right: dashed 15px #3A2E39;
}

#content {
    height: 150vh;
    display: flex;
    flex-direction: column;
    margin: auto;
}

/* header section */
#header {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

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

.headerText {
    display: block;
}

#header h1 {
    font-size: 28px; 
    font-weight: 200;
}

#header p {
    margin: 0;
    font-size: 24px;
}

#header img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-left: 50px;
}

nav {
    width: 100%;
    margin-top: 50px;
}

nav ul {
    display: flex;
    justify-content: center;
    margin-block-start: 0em;
    padding-inline-start: 0px;
    margin-block-end: 0em;
}

nav ul li {
    padding: 20px 50px;
    list-style-type: none;
}

a {
    font-size: 23px;
    color: #1E555C;
    text-decoration: none;
    font-weight: 200;
}

a:hover {
    font-size: 26px;
    background: #3a2e3931;
    padding: 10px 15px;
    color: #1E555C;
    border-radius: 12px;
    font-weight: 500;
}

/* end header section */

/* bio */

#bio {
    background: #1E555C;
    color: #F4D8CD;
    font-size: 26px;
    padding: 50px;
    width: 80%;
    height: auto;
    margin: 50px auto;
    border-radius: 12px;

    display: flex;
    
}

#bio p {
    margin: 0;
    padding: 20px;
}

#projects {
    width: 100%;
    padding: 50px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    background-color: #f151519a;
}

#projects section {
    width: 80%;
}

#projects h2 {
    width: 250px;
    font-size: 2rem;
    text-align: center;
    color: #EDB183;
    background-color: #3a2e39c8;
    padding: 50px 0px 50px 40px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 10% 50%);
}

ol {
    background-color: #fdebd3;
    height: fit-content;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;

    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0px;
}

#two-columns {
    column-count: 2;
    column-gap: 20px;
}


ol li {
    padding: 10px 50px;
    font-size: 32px;
    list-style-position: inside;
}

ol li a {
    padding-left: 10px;
    font-size: 32px;
}

#contact {
    padding-bottom: 20px;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
}

#contact p {
    margin: 5px;
}


@media screen and (max-width: 480px) {
    .headerTop {
        flex-direction: column-reverse;
    }

    .headerText {
        margin-top: 25px;
        text-align: center;
    }

    nav ul li {
        padding: 20px 30px;
    }

    #content {
        height: 240vh;
    }

    #bio {
        flex-direction: column;
        width: 70%;
    }

    #projects h2 {
        margin: 0px auto 35px;
    }
    
    #two-columns {
        column-count: 1;
        column-gap: 20px;
    }

    ol li {
        padding: 25px;
    }

    ol li a {
        padding-left: 5px;
        font-size: 24px;
    }
}


   /* Original colors: */
   /* 
   background: 264e70
   beige: fdebd3
   light blue: bbd4ce
   green blue: 679186
   */

   /* New Colors */
   /* 
   purple: #3A2E39
   teal: #1E555C
   light pink: #F4D8CD
   sand: #EDB183
   salmon: #F15152
   */