/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Reset default font styles */
body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

/* Reset default list styles */
ul,
ol {
    list-style: none;
}

/* Reset default anchor styles */
a {
    text-decoration: none;
    color: inherit;
}

/* Reset default button styles */
button {
    border: none;
    background: none;
    cursor: pointer;
}

/* Reset default form styles */
input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

/* Reset default table styles */
table {
    border-collapse: collapse;
    border-spacing: 0;
}


:root {
    --white: white;
    --black: black;
}

body {
    background-color: #000;
    display: flex !important;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

section {
    flex-flow: column;
    align-items: center;
    font-size: 1vw;
    display: flex;
    position: relative;
}

h1 {
    font-size: 10em;
    color: #fff;
    font-family: Poppins, sans-serif;
    font-weight: 700;
    line-height: 1em;
    margin: 0;
    letter-spacing: -.02em;
}

h1.design {
    transform: rotate(-10deg);
}

h1.guild {
    margin-left: 2.5em;
    transform: rotate(10deg);
}

h1.lightricks {
    margin-right: 1em;
    transform: rotate(-5deg);
}

.button {
    z-index: 9999;
    position: absolute;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
}

.button._catalog {
    cursor: pointer;
    top: auto;
    bottom: 2%;
    left: auto;
    right: 0%;
}

.button._fonts {
    cursor: pointer;
    top: auto;
    bottom: 6.7em;
    left: auto;
    right: 30em;
}

.button._comfy {
    cursor: pointer;
    top: auto;
    bottom: 5.1em;
    left: 0%;
    right: auto;
}

.button._GPTWebsite {
    cursor: pointer;
    top: 0%;
    bottom: auto;
    left: 3em;
    right: auto;
}

.button._highlights {
    cursor: pointer;
    top: auto;
    bottom: 50%;
    left: auto;
    right: -10%;
    rotate: -10deg;
    scale: 1.1;
}

.button._brandhub {
    cursor: pointer;
    top: auto;
    bottom: -8%;
    left: auto;
    right: 32%;
}

.button-image {
    max-width: 10em;
}

.logo {
    z-index: 9999;
    max-width: 7em;
    position: absolute;
    top: -14%;
    bottom: auto;
    left: 73%;
    right: 5em;
}

@media screen and (max-width: 991px) {
    .h1 {
        font-size: 16em;
    }

    .button._catalog {
        bottom: 5%;
    }

    .button._fonts {
        bottom: 11em;
        right: 50em;
    }

    .button._comfy {
        bottom: 8.5em;
    }

    .button._highlights {
        bottom: 55%;
        right: -5%;
        rotate: -10deg;
        scale: 1.1;
    }

    .button._brandhub {
        bottom: -3%;
        right: 42%;
    }

    .button-image {
        max-width: 17em;
    }

    .logo {
        max-width: 12em;
    }
}

@media screen and (max-width: 479px) {
    .button._fonts {
        right: 50em;
    }

    .button-image {
        max-width: 16em;
    }

    .logo {
        right: 3em;
    }

    .button._highlights {
        bottom: 55%;
        right: 0%;
        rotate: -10deg;
        scale: 1;
    }

    .button._brandhub {
        bottom: -3%;
        right: 42%;
    }
}



#uploadButton {
    font-size: 30px;
    background-color: white;
    color: black;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    position: fixed;
    bottom: 40px;
    right: 40px;
}

.colorCircle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
}

@keyframes wobble {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-5deg);
    }

    50% {
        transform: rotate(5deg);
    }

    75% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.button:hover {
    animation: wobble 0.5s ease-in-out;
}

#colorDrawer {
    display: none;
    position: fixed;
    bottom: 110px;
    right: 40px;
    flex-direction: column;
    grid-row-gap: 10px;
}