body {
    margin: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    font-family: "Monoton", cursive;

    -webkit-touch-callout: none; /* Disable long-press context menus on WebKit (Chrome, Safari) */
    user-select: none;           /* Disable text selection */
    -webkit-user-select: none;   /* Disable text selection in WebKit-based browsers (Chrome, Safari) */
    -moz-user-select: none;      /* Disable text selection in Firefox */
    -ms-user-select: none;       /* Disable text selection in older versions of IE/Edge */
    touch-action: manipulation;  /* Prevents long-press actions, including zooming or panning */

}

#company-name {
    font-size: 8vw;
    color: rgba(0, 0, 0, 0.8);
    text-align: center;
    line-height: 1;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    z-index: 10;
    padding: 0 5vw;
    box-sizing: border-box;
    user-select: none;

    -webkit-touch-callout: none; /* Disable long-press context menus on WebKit (Chrome, Safari) */
    user-select: none;           /* Disable text selection */
    -webkit-user-select: none;   /* Disable text selection in WebKit-based browsers (Chrome, Safari) */
    -moz-user-select: none;      /* Disable text selection in Firefox */
    -ms-user-select: none;       /* Disable text selection in older versions of IE/Edge */
    touch-action: manipulation;  /* Prevents long-press actions, including zooming or panning */
}

#subtext {
    font-size: 3vw;
    color: rgba(0, 0, 0, 0.4);
    text-align: center;
    line-height: 1;
    white-space: nowrap;
    font-family: "quicksand", sans-serif;
    margin-top: 0;
    cursor: default;
    user-select: none;

    -webkit-touch-callout: none; /* Disable long-press context menus on WebKit (Chrome, Safari) */
    user-select: none;           /* Disable text selection */
    -webkit-user-select: none;   /* Disable text selection in WebKit-based browsers (Chrome, Safari) */
    -moz-user-select: none;      /* Disable text selection in Firefox */
    -ms-user-select: none;       /* Disable text selection in older versions of IE/Edge */
    touch-action: manipulation;  /* Prevents long-press actions, including zooming or panning */

}

@media (max-width: 500px) {
    #company-name {
        font-size: 10vw;
        line-height: 0.8; /* Adjust this value to control the line spacing */
        flex-direction: column;
    }

    #subtext {
        font-size: 4vw;
        white-space: normal;
        text-align: center;
    }
}

@media (min-width: 1000px) {
    #company-name {
        font-size: 96px;
        line-height: 0.8; /* Adjust this value to control the line spacing */
        flex-direction: column;
    }

    #subtext {
        font-size: 36px;
        white-space: normal;
        text-align: center;
    }
}

.dot {
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: gray;
    border-radius: 50%;
    transition: background-color 1s ease, transform 0.2s;
    transform: scale(1);
    pointer-events: auto; /* Allow dots to be clickable */
    z-index: 1;
}



/* Monoton font style */
.monoton-regular {
    font-family: "Monoton", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* Sarala font style */
.sarala-regular {
    font-family: "Sarala", sans-serif;
    font-weight: 400; /* Regular weight */
    font-style: normal;
}

/* Quicksand font style*/
.quicksand-light {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}