@charset "UTF-8";

:root {
    -grobel-fonts: "Kiwi Maru Static";
}

html {
    font-family: var(--grobal-fonts);
}

body {
    font-family: Kiwi Maru;
    background-image: url(./main.png);
    background-position: top;
    background-size: cover;
    margin: 0;
}

main {
    height: 100vh;
}

h2 {
    margin: 0;
}

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

h1 {
    margin: 0;
    font-size: 30px;
    padding-top: 30px;
    text-align: center;
}

.wrapper {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    color: rgb(248, 170, 216);
    width: 100vw;
    background-color: rgb(248, 170, 216, .1);
    margin: 0;
}

.hamburger {
    display: none;
}

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

ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
}

li {
    width: fit-content;
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 15px;
    margin-left: 5vw;
    margin-right: 5vw;

}

.title {
    text-align: center;
    margin-top: 10vh;
    margin-left: auto;
    margin-right: auto;
    font-size: 30px;
    padding: 30px;
    border-radius: 50%;
    color: #f8a9d7;
}

.sub-text{
    font-size: 20px;
    color: #f8a9d7;
    text-align: center;
}

.contact-flex {
    display: flex;
    justify-content: space-around;
    color: #f8a9d7;
}

.nav-close{
    display: none;
}


@media screen and (max-width: 769px) {
    .header-flex {
        display: flex;
        justify-content: space-between;
    }

    .logo {
        font-size: 5vw;
    }

    .hamburger {
        display: block;
        width: 40px;
        height: 30px;
        background: none;
        border: none;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-top: 15px;
        padding-bottom: 10px;
    }

    .hamburger span {
        height: 3px;
        background: #f8a9d7;
        border-radius: 2px;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(13px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-13px) rotate(-45deg);
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #fff;
        transition: right 0.3s ease;
    }

    .nav ul {
        padding: 80px 20px;
    }

    ul {
        flex-direction: column;
        justify-content: flex-start;
    }

    .nav.open {
        right: 0;
    }

    .nav-close {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 32px;
        background: none;
        border: none;
        cursor: pointer;
        color: #f8a9d7;
    }

    body {
        margin: 0;
        color: #f8a9d7;
    }
    .title{
        font-size: 5vw;
        padding: 20px;
    }

    .icon{
        width: 25vw;
    }

    p{
        font-size: 10px;
    }
}