body {
    color: aqua;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    text-align: center;
}
.navbar {
    width: 100%;
    display: flex;
    justify-content: space-around;
    background-color: #000000;
    color: white;
    padding: 15px 0;
    position: fixed;
    top: 0;
}
.nav_item{
    text-decoration: none;
    color: aqua;
}

.nav-item {
    cursor: pointer;
    padding: 0 20px;
}

.nav-item:hover {
    background-color: #000000;
}
/* this side to be modified  */
#cursor{
    width: 5px;
    height: 5px;
    position: absolute;
    border-radius: 50%;
    background-color: rgb(0, 255, 64);
    pointer-events: none; /* So the cursor is always clickable through */
    transition: background-color 1s;
}
#cursor1{
    width: 5px;
    height: 5px;
    position: absolute;
    border-radius: 50%;
    background-color: red;
    pointer-events: none; /* So the cursor is always clickable through */
    transition: background-color 1.1s;
}
#cursor2{
    width: 5px;
    height: 5px;
    position: absolute;
    border-radius: 50%;
    background-color: red;
    pointer-events: none; /* So the cursor is always clickable through */
    transition: background-color 1.2s;
}
#cursor3{
    width: 5px;
    height: 5px;
    position: absolute;
    border-radius: 50%;
    background-color: red;
    pointer-events: none; /* So the cursor is always clickable through */
    transition: background-color 0.5s;
}
#cursor4{
    width: 5px;
    height: 5px;
    position: absolute;
    border-radius: 50%;
    background-color: red;
    pointer-events: none; /* So the cursor is always clickable through */
    transition: background-color 1.5s;
}
#cursor5{
    width: 5px;
    height: 5px;
    position: absolute;
    border-radius: 50%;
    background-color: red;
    pointer-events: none; /* So the cursor is always clickable through */
    transition: background-color 0.7s;
}

h1 {
    font-weight: 900;
}

.container {
    display: grid;
    grid-template-columns: repeat(3, 100px);
    gap: 10px;
}

.button {
    height: 100px;
    width: 100px;
    margin: 5px;
    border-radius: 10px;
    border: 5px solid aqua;
    background-color: aqua;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
}

.button:hover{
    background-color: seagreen;
}

.button:active {
    background-color: seagreen;
    transform: scale(0.95);
}

#reset {
    margin-top: 10px;
    height: 20px;
    border-radius: 5px;
    border: none;
    background: aqua;
    transition-duration: 1s;
    transition-timing-function: ease-out;
    cursor: pointer;
}
#reset:hover {
    background-color:red;
    transform: rotateX(360deg);
}