.div1{
    width: 200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    height: 100px;
    flex-direction: column;
    align-items: center;
}

.container{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 100vw;
    height: 40vh;
    text-align: center;
}

.div2{
    text-align: center;
    height: 100px;
}
h1{ 
    
    display: inline-block;
    width: fit-content;
    font-size: 20px;
    font-weight: bold;
    margin: 0 auto;
    padding:20px 20px;
    border-radius: 20px;
    cursor: pointer;
    
}

h1:hover{
    background-color: aqua;
}

select{
    width: 230px;
    border: 2px dashed salmon
}

.search{
    background-color: violet;
    border-radius: 10px;
    padding: 20px;
    cursor: pointer;
}

