*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto Mono', monospace;
}

.preloader {
    min-height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.preloader .loader{
    width: 300px;
    position: absolute;
}

.preloader .loader img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.date {
    position: absolute;
    top: 0;
    left: 0;
}

.time img,
.date img{
    width: 170px;
}

#CurTime,
#CurDate{
    max-width: 3ch;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 15px;
    color: rgba(243, 100, 5, 0.8);
    z-index: 10;
}

.time {
    position: absolute;
    top: 0;
    right: 0;
}

.textBox{
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.main{
    min-height: 100vh;
    position: relative;
    width: 100%;
    background:#000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main .img-container{
    padding: 10px;
}

.main .img-container .image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main .img-container .image img{
    text-align: center;
    width: 170px;
}

.main .img-container h1{
    color: #fa4a05;
    text-align: center;
    margin-bottom: 10px;
    font-size: 40px;
}

.main .img-container p{
    color: #af5033;
    text-align: center;
    margin-bottom: 40px;
}

.main .input{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40vw;
    height: 50px;
    border-radius: 20px;
    background-image:linear-gradient(red,gray);
}

.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;
}

.main .fill{
    position: absolute;
    bottom: 0;
    right: 0;
}

.main .fill2{
    position: absolute;
    bottom: 0;
    left: 0;
}

.main .fill img{
    width: 220px;
}

.main .fill2 img{
    height: 240px;
}



