* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.main {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #74b9ff;
}
.main h1 {
  font-size: 40px;
  background: -webkit-linear-gradient(#035185, #5aace2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  padding-bottom: 20px;
}
.main .row {
  width: 600px;
  height: 300px;
  background-color: rgba(0, 60, 255, 0.212);
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 255, 0.164);
  display: flex;
  flex-direction: column;
  text-align: center;
}
.main .row .col {
  margin: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 35px;
  color: white;
}
#search {
  font-size: 25px;
  padding: 10px 20px;
  border-radius: 25px;
  border: none;
  outline: none;
  box-shadow: 0px 0px 5px gray;
}
.searchbtn {
  font-size: 25px;
  padding: 10px 20px;
  border-radius: 25px;
  border: none;
  background-color: #035185;
  margin: 0px 10px;
  color: white;
}
.searchbtn:hover {
  background-color: #146ca7;
  cursor: pointer;
}
