@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: fixed;
    width: 100%;
    background: #000;
    /* background-image:url(./nexusbg.gif); */
    /* background-size:contain;
    background-repeat: no-repeat; */
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main .image-container {
    padding: 10px;
}

.main .image-container .image {
    width: 100%,-20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main .image-container .image img {
    width: 250px;
    align-items: center;
}

.main .image-container h1 {
    color: #00bcd4;
    text-align: center;
    margin-bottom: 10px;
    font-size: 40px;
}

.main .image-container p {
    color: #324042;
    text-align: center;
    margin-bottom: 40px;
}

.main .input {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40vw;
    height: 50px;
    border-radius: 20px;
    background: rgb(202 253 255 / 50%);
}

.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: #aed0d0;
    font-size: 15px;
    margin-right: 20px;
}
#sub{
    /* font-size: 50px; */
    font-weight: bold;
    text-transform: uppercase;
    background: linear-gradient(45deg, #18f5e2, #5de80d, #832af0, #f9007c, #0ef968);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 3s infinite linear;
    text-shadow: 0 0 10px rgba(239, 26, 136, 0.688), 0 0 20px rgba(255, 0, 0, 0.7);
}

@keyframes glow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position:0% 50%;}
}

#nexus{
    /* font-size: 50px; */
    font-weight: bold;

    text-transform: uppercase;

    background: linear-gradient(60deg, #00ff00,#00ff00);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    text-shadow:  1px 1px 6px  #00ff00, 1px 1px 1px #ff0095;

}
body{

    background-image:url(./nexusbg.gif);
    background-size:contain;
    background-repeat: no-repeat;
    height: 100%;
    width:fit-content;
}