*{
    user-select: none;
    -webkit-user-drag: none;
}
::selection{
    user-select: none;
}
/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
  }
  
  /* Hide scrollbar for IE, Edge and Firefox */
  body {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }
html{
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: linear-gradient(315deg, #6a93cb, #a4bfef 74%);
}

.container {
    text-align: center;
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    position: relative;
}

h1 span{
    font-size: 36px;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
  }
  h1 span:hover{
    animation: jello-horizontal 0.9s ease;
  }
  @keyframes jello-horizontal {
    0% {
        transform: scaleX(1);
    }
    30% {
        transform: scaleX(1.25) scaleY(0.75);
    }
    40% {
        transform: scaleX(0.75) scaleY(1.25);
    }
    50% {
        transform: scaleX(1.15) scaleY(0.85);
    }
    65% {
        transform: scaleX(0.95) scaleY(1.05);
    }
    75% {
        transform: scaleX(1.05) scaleY(0.95);
    }
    100% {
        transform: scaleX(1) scaleY(1);
    }
  }

input {
    width: 80%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.tooltip {
    visibility: hidden;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 5px 10px;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* Position the tooltip above the text */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    width: 220px;
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
}

.input-container:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

button {
    padding: 10px 20px;
    border: none;
    background-color: #007bff;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

p {
    margin-top: 20px;
    color: red;
}
#paragraph{
    position: absolute;
    font-size: 16px;
    color: black;
    font-weight: 700;
    top: 630px;
    right: 60px;
}
.logo{
    position: absolute;
    top: 0;
    left: 100px;
    width: 140px;
}

/* Small screens (mobile devices, max-width: 600px) */
@media only screen and (max-width: 600px) {

    .container {
        margin-top: 20px;
    }

    h1 span {
        font-size: 16px;
    }

    button {
        padding: 10px 10px;
    }

    #paragraph {
        font-size: 12px;
        top: 600px;
        right: 20px;
    }

    .logo {
        top: 10px;
        left: 10px;
    }
    .tooltip {
        width: auto;
        white-space: nowrap;
        font-size: 12px;
    }

    input:hover .tooltip {
        visibility: visible;
        opacity: 1;
    }
}

/* Medium screens (tablets, 600px - 1200px) */
@media screen and (max-width: 1200px) and (min-width: 600px) {

    .container {
        margin-top: 30px;
    }

    h1 span {
        font-size: 28px;
    }

    button {
        padding: 10px 15px;
    }

    #paragraph {
        top: 2200px;
        right: 20px;
        font-size: 14px;
    }

    .logo {
        top: 10px;
        left: 10px;
    }
    .tooltip {
        width: auto;
        white-space: nowrap;
        font-size: 12px;
    }

    input:hover .tooltip {
        visibility: visible;
        opacity: 1;
    }
}
