@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: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.main {
    min-height: 100vh;
    position: relative;
    width: 100%;
    background: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main .image-container {
    padding: 5px;
}

.main .image-container .image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main .image-container h1 {
    color: #00bcd4;
    text-align: center;
    margin-bottom: 10px;
    font-size: 50px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    animation: text-fade-in 2s ease-in-out;
}

.main .image-container p {
    color: white;
    text-align: center;
    margin-bottom: 10px;
    animation: text-fade-in 2s ease-in-out;
}

.main .buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 20px; /* Adjust as needed */
    
}

.main .input, .main .text-search {
    width: 25%;
    margin-top: 40px;
    height: 50px;
    border-radius: 50px;
    background: rgb(255, 255, 255);
    transition: background 0.3s ease-in-out;
    
}
.icon{
    margin-left: 5px;
    margin-right: 5px;
    font-size: 20px;
}
.icon-right{
    margin-left: 20px;
}
.icon-left{
    margin-right: 20px;
}

.main .input .talk, .main .text-search-btn, .main .image-search {
    background: transparent;
    outline: none;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    color: #000000;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    
}

.main .input .talk i {
    font-size: 20px;
}

.main .input .content {
    color: #000000;
    font-size: 15px;
    margin-right: 20px;
    float: right;
}

.main .search-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    
}

.main .search-image .image-search {
    background: rgb(255, 255, 255);
    outline: none;
    border: none;
    padding:  15px;
    display: flex;
    align-items: center;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    color: #000000;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
   
    
    
}

.main .search-image .image-search i {
    font-size: 20px;
    margin-right: 10px;
    float: left;
}

/* Hover and animation effects */
.main .input:hover, .main .search-image .image-search:hover {
    transform: scale(1.02);
    transition: all 0.3s ease;
    box-shadow: 0 0 40px rgba(234, 0, 255, 0.882);
}

.main .input:active, .main .search-image .image-search:active {
    transform: scale(0.9);
    box-shadow: 0 0 10px rgb(20, 11, 149);
}

/* Animations */
@keyframes text-fade-in {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
