@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;
    color: #fff;
}

body {
    background-color: #000;
}

.main {
    min-height: 100vh;
    position: relative;
    width: 100%;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main .image-container {
    text-align: center;
    margin-bottom: 20px;
}

.main .image-container img {
    width: 500px; /* Increased from 350px to 500px */
    margin: 0 auto;
    margin-bottom: 20px;
    transition: width 0.3s ease; /* Smooth transition for size changes */
}

/* Add responsive sizing for smaller screens */
@media (max-width: 768px) {
    .main .image-container img {
        width: 90vw;
        max-width: 500px;
    }
}

.main .image-container h1 {
    color: #00bcd4;
    text-align: center;
    font-size: 2.5rem; /* Increased from 2rem to match larger GIF */
    margin-bottom: 10px;
}

.main .image-container p {
    color: #324042;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.1rem; /* Increased from default to match larger GIF */
}

.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;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.main .input .talk svg {
    color: #aed0d0;
}

.main .input .content {
    color: #aed0d0;
    font-size: 15px;
    margin-right: 20px;
}