.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: 2em;
    color: rgb(0, 179, 15);

    img {
        display: block;
        margin: 0 auto;
        width: 100%;
    }
}

p {
    font-size: 1.2rem;
    line-height: 1.5;
    color: rgb(0, 179, 15);
}

.cat {
    position: relative;
    height: 500px;
    width: 100%;
    margin-top: 3em;

    .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;
    }

    h1 img {
        height: 450px;
        width: 100%;
    }

    .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: center;
    }

    h1 img {
        margin: 0;;
    }

    main {
        width: 100%;
    }

    .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;
    }

    .cat {
        position:relative;
        max-width: 600px;
    }

}