@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%;
     background: #000;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
}
.main .container .image{
    padding:10px;
}
.main .container .image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main .container .image img{
    width: 350px;
    align-items: center;
}
.main .container h1{
    color: #00bcd4;
    text-align: center;
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 10px;
}
.main .container p{
    color: #324042;
    text-align: center;
    margin-bottom: 40px;
}
.main .input-field{
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40vw;
    height: 50px;
    border-radius: 20px;
    background: rgba(202 253 255 / 50%);
}
.main .input-field .talk{
    background: transparent;
    border: 0;
    outline: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main .input-field .talk i{
    font-size: 30px;
    color: #aed0d0;
}
.main .input-field .content{
    font-size: 18px;
    color: #aed0d0;
    margin-right: 10px;
}