.hide-mobile {
    display: none;
}


body {
    background-color: rgb(0, 0, 0);
    margin: 0;
    font-family: 'Inter';
}

.wrap {
    margin: 1.5em;
}

header {
    display: flex;
    justify-content: space-between;
}

nav ul {
    background: rgb(22, 22, 22);
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    height: 100vh;
    margin: 0;
    list-style: none;
    width: 30%;
    text-align: right;
    padding: 2em;
    transform: translateX(100%);
    transition: transform 0.5s ease-in-out;

    li {
        margin: 2em 0.5em;

        &:nth-of-type(1) {
            margin-bottom: 4em;
        }

        a {
            color: rgb(255, 255, 255);
            text-decoration: none;
            font-weight: bold;
            font-size: 1.2rem;

            &:hover {
                color: rgb(0, 179, 15);
            }
        }
    }

}

.open {
    transform: translateX(0%);
}

h1, p {
    text-align: center;
}

h1 {
    margin-top: 3em;
    color: rgb(0, 179, 15);
}

p {
    font-size: 1.2rem;
    line-height: 1.5;
    color: rgb(255, 255, 255);
}

a.primary-cta {
    background: rgb(0, 179, 15);
    position: relative;
    padding: 0.1em 1em;
    width: auto;
    box-sizing: border-box;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.3rem;
    color: black;
    border-radius: 0.3em;
    margin-top: 1em;
    margin-bottom: 1em;
}

main, a {
    text-align: center;  
}

.cat {
    position: relative;
    height: 500px;
    width: 100%;
    margin-top: 3em;

    img {
        width: 70%;
        position: absolute;
        left: 50%;
        transform:translateX(-50%);
        margin-top: 5em;
    }

    .inner-circle, .outer-circle {
        position: absolute;
        border-radius: 50%;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .inner-circle {
        background:rgb(0, 0, 0);
        width: 400px;
        height: 400px;
        z-index: -1;
    }

    .outer-circle {
        background:rgb(0, 0, 0);
        width: 550px;
        height: 550px;
        z-index: -2;
    }
}

@media (min-width: 750px){
    .wrap {
        margin: -2em 2em;
    }

    .hide-desktop {
        display: none;
    }

    .hide-mobile {
        display: block;
    }

    .header-left {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1em;

        .divider {
            height: 50px;
            width: 15px;
            border-right: 1px solid rgb(0, 0, 0);
        }

        a {
            text-decoration: none;
            color: rgb(255, 255, 255);
            font-size: 1rem;
        }
    }

    nav ul{
        position: unset;
        background: none;
        display: flex;
        gap: 3em;
        height: auto;
        width: auto;
        transform: translateX(0%);

        li a {
            font-size: 1rem;
        }
    }
}

@media (min-width: 950px){
    h1, p {
        text-align: left;
    }

    h1 img {
        margin: 0;;
    }

    main {
        width: 50%;
    }

    .cat {
        margin-top: 0;

        .inner-circle {
            width: 500px;
            height: 500px;
        }

        .outer-circle {
            width: 1000px;
            height: 1000px;
        }
    }
    
    .cat-container {
        position: absolute;
        z-index: -1;
        width: 50%;
        top: 20%;
        right: 0;
    }
}

@media (min-width: 1200px){
    .wrap {
        margin: -2em auto;
        padding: 0 2em;
        max-width: 1200px;
    }

    a.primary-cta {
        display: inline-block;
        width: auto;
        padding: 0.1em 1em;
    }

    .cat {
        position:relative;
        max-width: 750px;
    }

}