body {
    background-color: #FFF0F9;
}

/* TYPOGRAPHY */

h1,
h2 {
    color: #FF04AB;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 700;
}

h1 {
    font-size: 2.25rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-weight: 700;
    font-size: 1.25rem;
    color:#B9007B;
}

h3,
p,
li,
a {
    font-family: "Nunito", sans-serif;
}

p,
li,
a {
    font-size: 1rem;
    color: #000;
}

li {
    list-style-type: none;
}

a {
    text-decoration: none;
    color:#B9007B;
}
/* UTILITY CLASSES */

.flex {
    display: flex;
    gap: 1.5rem;
}

.circle {
    border-radius: 100%;
    border: solid #FF04AB .1875rem;
    width: 50%;
}

.container {
   padding:1.5rem;
}

.btn {
    background-color: #F9A8D4;
    padding: .5rem;
    border-radius: .5rem;
}

.btn:hover {
    background-color: #FFD3E9;
}

/* TOPNAV */
.header-content {
    display:flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.875rem;
    min-height: 3.75rem;
}

.nav {
    transition: all 0.3s ease-in-out;
}

.nav-list {
    display:flex;
    gap: 2.5rem;
}

.nav-item {
    margin: .5rem 0;
}

.nav-link {
    transition: all 0.4s;
}

.nav-link:hover,
.nav-link:focus {
    background-color:#F9A8D4;
    padding: 1rem;
    border-radius: .5rem;
}

.hamburger{
    display:none;
    cursor: pointer;
}

.bar {
    height: .1875rem;
    width: 1.6875rem;
    background: #FF04AB;
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}

.nav-open{
    transform: translate(0) !important;
}

.hamburger-open .bar:nth-child(1){
    transform: translateY(.4375rem) rotate(45deg);
}

.hamburger-open .bar:nth-child(2){
    opacity: 0;
}

.hamburger-open .bar:nth-child(3){
    transform: translateY(-.4375rem) rotate(-45deg);
}

@media (max-width: 650px) {
    .nav {
        position: fixed;
        top: 3.75rem;
        left: 0;
        background-color:#FFD3E9;
        width:100%;
        padding: 10px 0 25px;
        transform: translateX(-100%);
    }

    .nav-list {
        flex-direction:column;
        align-items: center;
        gap: 1.25rem;
    }

    .hamburger{
        display:block;
    }
}
/* HEADER */

header, 
footer {
    background-color: #FFD3E9;
}

svg {
    fill: #FF04AB;
    width: 3.125rem;
    height: 3.125rem;
}

footer {
    padding: 1.5rem;
    align-items: center;
    justify-content: space-between;
}

/* HERO BANNER */

.title-banner {
    background-color: #FFD3E9;
    border-top: .1875rem solid #FF04AB;
    border-bottom: .1875rem solid #FF04AB;
    margin: 3rem 0;
    padding: 1.5rem 0;
    text-align: center;
    width: 100%;
}

.title {
    font-weight: 700;
    color: #B9007B;
}

.who div {
    justify-content: center;
    margin: 1.5rem 0;
}

.feature {
    background-color: #FFD3E9;
    padding: 2rem 0;

    p {
        margin: 2rem 0;
        padding: 0 1rem;
    }

    a {
        margin: 0 1rem;
    }

    h3 {
        margin-bottom: 2rem;
    }
}

.hero-banner div div{
    width: 40%;
    h1 {
        margin: 2rem 0;
    }
}

.hi {
    margin: 2rem 0;
    h2 {
        margin: 2rem 0;
    }
    .flex {
        align-items: center;
        justify-content: flex-start;
        gap: 5rem;
    }
}

/* ABOUT PAGE */

.about {

div {
    justify-content: center;
    margin: 2rem 0;
}

p {
    margin: 1rem 0;

    span {
        color: #FF04AB;
    }
}

}

.projects {
    section:not(.header) {
        background-color:#FFD3E9;
        border-radius: 8px;
        margin: 2rem 0;
        padding: 2rem 1rem;

        a {
            font-family: "Josefin Sans", sans-serif;
            color: #FF04AB;
            font-weight: 700;
            font-size: 1.25rem;
            padding: 1rem 0;
        }

        img{
            width: 110%;
            margin-bottom: 1rem;
        }
    }
}

.project-item {
    section {
        padding: 1.5rem 0;
        h1 {
            margin-bottom: 2rem;
        }
        div img {
            width: 50%;
            margin: 1rem 0;
        }
    }
}

.project-item section:nth-child(4) {
    ul li {
        list-style: disc;
    }
}

/* MEDIA QUERIES */

@media (min-width:975px) {
    .container {
        padding: 0 5rem;
    }

    p,
    li,
    a {
    font-size: 1.25rem;
    }
    h1 {
    font-size: 4.25rem;
    }
    h2 {
        font-size: 2.5rem;
    }

    /* Sections */
    .who div {
        display:flex;
        justify-content: center;
        align-items: center;
        gap: 5rem;
        p {
            width:90%;
        }
        div {
            display:block;
        }
    }

    .hero-banner .btn {
        display:inline-block;
        width: 100%;
        text-align: center;
    }

    .hi {
        div img {
            width: 30%;
        }
    }

    /* pages */
    .about {
        display: flex;
        align-items: flex start;
        gap: 2rem;
        img {
            width: 100%;
            height: 50%;
            margin-top: 3rem;
        }
    }

    .projects div {
        display:flex;
        gap: 1rem;
        justify-content: space-between;
        align-items: center;
        section {
            width: 33%;
        }
    }
}