/* 
font-family: 'Fredoka',
sans-serif;
font-family: 'PT Sans',
sans-serif;
font-family: 'PT Sans Narrow',
sans-serif;
*/

html {
    scroll-behavior: smooth;
}

p {
    font-family: 'PT Sans Narrow', sans-serif;
    font-weight: 200;
}

header {
    /* background-color: #cfcccc; */
    padding: 15px;
    color: white;
    text-align: center;
}

.burgerMenu {
    background: rgba(183, 179, 179, 0.395);
    border-radius: 10px;
    display: grid;
    grid-template-columns: 1fr;
    padding: 15px;
    color: white;
    text-align: center;
    margin-bottom: 2em;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    flex: 1;
    /* Take up remaining space */
}

.Top-logo img {
    max-width: 16%;
    cursor: pointer;
    display: block;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 6px 0;
    transition: 0.4s;
}

.nav-menu {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.nav-menu a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    padding: 14px 16px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 400;
}

.nav-menu a:hover {
    background-color: rgb(79, 79, 201);
    color: rgb(228, 225, 225);
    border-radius: 10px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    transition: ease-in-out 0.2s;
}

.LandLogo {
    display: grid;
    justify-content: center;
}

.LandLogo a {
    text-align: center;
}

.LandLogo img {
    max-width: 38%;
}

/* END OF NAV */

.Projects {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-gap: 2em;
    justify-content: center;
}

.Projects div {
    display: grid;
    justify-content: center;
}

@media only screen and (max-width: 414px) {
    .menu-toggle {
        display: flex;
    }

    .burgerMenu {
       width: 89vw;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 76px;
        left: 0;
        width: 100%;
        background-color: rgb(79, 79, 201);
        z-index: 1;
        border-radius: 10px;
    }

    .nav-menu a {
        font-family: 'Fredoka', sans-serif;
        font-weight: 500;
        color: white;
    }

    .nav-menu.active {
        display: flex;
    }

    .Top-logo img {
        max-width: 46%;
    }

    .Projects {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-gap: 2em;
        justify-content: center;
    }

    .Projects div {
        display: grid;
        justify-content: center;
    }
}