body{
    text-align : center;
    padding-top : 50px ;
}

h1 {
    font-size: 60px ;
    color : #4A90E2 ;
}

.div {
    display : flex ;
    border-radius : 20px ;
    outline : 3px solid #4A90E2 ;
    width : 85vw ;
    height : 65px ;
    overflow: hidden;
    align-items: center;
    margin : 0 auto ;
}

.div input {
    resize : none !important ;
    height : 70px ;
    width: 80vw ;
    resize : none ;
    border : none ;
    outline : none ;
    font-size : 23px ;
    line-height: 70px ;
}

.div button {
    height : 60px ;
    width : 110px ;
    border-radius : 20px ;
    background-color : #4A90E2 ;
    outline : none ;
    border : none ;
    font-size : 20px ;
    text-align : center ;
    color : white ;
    transition : all 0.2s ease ;
    transform : translate( -4px , 1px ) ;
}

.div button:hover {
    background-color : #4a91e288 ;
}

.div button:active {
    background-color : #003477 ;
}

select {
    width : 100px ;
    height : 50px ;
    font-size : 20px ;
    color : #4A90E2 ;
}

#home {
    position : fixed ;
    bottom : 20px ;
    left : 50% ;
    transform : translateX(-50%) ;
    z-index : 999 ;
    background-color : #4A90E2 ;
    height : 60px ;
    width : 110px ;
    border-radius : 20px ;
    font-size : 20px ;
    color : white ;
    outline : none ;
    border : none ;
    transition : all 0.2s ease ;
}

#home:hover {
    background-color : #4a91e288 ;
}

#home:active {
    background-color : #003477 ;
}