@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Damion&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    padding: 0;
}

body {
    font-family: 'Heebo', sans-serif;
}

nav {
    display: flex;
    justify-content: space-between;
    padding: 1rem 5rem;
    background: white;
    font-size: 1.1rem; 
    border-bottom: 1px solid lightpink;
    background-color: rgb(250, 229, 232);
}

h2 {
    font-size: 5rem;
    margin-left: 15px;
}

ul {
    display: flex;
    list-style: none; 
    align-items: center;
}

a {
    text-decoration: none;
    font-size: 1.2rem;
    color: black;
    margin-left: 5rem;
}

.nav-items {
    flex: end;
    font-weight: bold;
}

.logo {
    position: absolute;
    left: 50%;
    top: 50%;
    font-size: 1.5rem;
    transform: translate(-50%,-50%) scale(4);
}

.logo-icons {
    position: absolute;
    left: 50%;
    top: 80%;
    font-size: 1.5rem;
    transform: translate(-50%,-50%) scale(4);
}

.first-page-first-half h2,
.first-page-second-half h2 {
    text-align: center;
}

.first-page-first-half p,
.first-page-second-half p {
    text-align: center;
}

.first-page-first-half,
.first-page-second-half {
    height: 100vh;
    background: rgb(21,21,21);
    color: lightpink;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.first-page-first-half img {
    height: 80%;
}

.first-page-second-half img {
    height: 65%;
    width: 33%;
    
}
.home {
    height: 100vh;
}

/* Progress Bar*/
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 8px;
    background: linear-gradient(to right, #b61724, #ffc371);
    width: 0%;
    z-index: 100;
    transition: width 0.2s ease-out;
}

@media screen and (max-width: 860px) {
    nav {
        flex-direction: column;
        padding: 1rem 6rem;
    }

    .sliding-text {
        text-align: center;
    }

    .nav-items {
        font-size: small;
    }

    .logo {
        font-size: 0.7rem;
    }

    
    .first-page-second-half {
        flex-direction: column;
    }

    .first-page-first-half {
        flex-direction: column;
    }

    .first-page-first-half h2 {
        font-size: 45px;
        margin-top: 40px;
    }

    .first-page-first-half p {
        font-size: 16px;
    }

    .first-page-second-half img {
        margin-top: 100px;
        width: 30%;
    }

    .first-page-first-half img {
        height: 50%;
    }

    .first-page-second-half h2 {
        font-size: 45px;
    }

}

@media screen and (max-width: 500px) {
    nav {
        flex-direction: column;
        padding: 0;
    }

    .sliding-text {
        text-align: center;
    }

    .logo {
        font-size: 0.6rem;
    }

    .first-page-first-half {
        flex-direction: column;
    }

    .first-page-first-half img {
        height: 50%;
    }

    .first-page-first-half h2 {
        font-size: 40px;
        margin-top: 60px;
    }

    .first-page-second-half {
        flex-direction: column;
    }

    .first-page-second-half h2 {
        font-size: 40px;
    }

    .first-page-second-half img {
        margin-top: 100px;
        width: 55%;
    }
}
