body{
    display: flex;
    justify-content: center;
    align-items: center;
     /* border: 3px solid red; */
    height: 100vh;
    /* width: 100vw; */
}
.main{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.search{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid black;   
    border-radius: 50px;
    padding:10px;
    width: 300px; /* Adjust the width as needed */
}

.search input {
    border: none;
    outline: none;
    width: 100%;
}

main{
    font-size: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.info{
    display: flex;
    gap: 20px;
    margin-top: 10px;
}
.s1{
    background-color: antiquewhite;
    padding: 5px 5px;
    border-radius: 25px; /* Capsule shape */
    border: 1px solid #ccc;
}
.s2{
    background-color: antiquewhite;
    padding: 5px 5px;
    border-radius: 25px; /* Capsule shape */
    border: 1px solid #ccc;
}