@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@100;200;300;400;500;600;700&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto Mono", monospace;
}

.main {
    min-height: 100vh;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;


  }
  


.main .image-container {
    z-index: 1;

    padding: 10px;

}

.main .image-container .image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main .image-container .image img {
    width: 150px; /* Adjust the size as needed */
    border-radius: 50%; /* Makes the image circular */
    margin-bottom: 20px; /* Adds spacing between image and text */
}

/* .main .image-container h1 {
    color: #fcfdff;
    text-align: center;
    margin-bottom: 10px;
    font-size: 40px;
} */


.main .image-container h1 {
    color: #b3ff00;
    text-align: center;
    margin-bottom: 10px;
    font-size: 40px;
    animation: fadeIn 2s ease-in-out infinite;
}

@keyframes fadeIn {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}


.main .image-container p {
    color: rgb(0, 153, 173);
    text-align: center;
    margin-bottom: 40px;
}

.main .input {
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40vw;
    height: 50px;
    border-radius: 20px;
    background: rgb(50, 125, 135);
    cursor: pointer;
}

.main .input .talk {
    background: transparent;
    outline: none;
    border: none;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    cursor: pointer;
}

.main .input .talk i {
    font-size: 20px;
    color: #aed0d0;
}

.main .input .content {
    color: #000000;
    font-size: 15px;
    margin-right: 20px;
}












.main .image-container .image img {
    width: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 0 25px 5px rgba(171, 255, 35, 0.498); /* Adjust color & spread as needed */
}










/* Section styles */
.gunman {
    position: fixed;
    background: black;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    flex-wrap: wrap;
    overflow: hidden;
    z-index: 0;
    pointer-events: auto;
}



/* Animated gradient effect */
.gunman::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(#000, rgb(0, 120, 0), #000);
    animation: animate 5s linear infinite;
}

/* Animation keyframes */
@keyframes animate {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

/* Styling for individual spans */
.gunman span {
    position: relative;
    display: block;
    width: calc(6.25vw - 2px);
    height: calc(6.25vw - 2px);
    background: #181818;
    z-index: 2;
    transition: 1.5s;
}

.gunman span:hover {
    background: rgb(149, 255, 0);
    transition: 0s;
}

