*{
  font-family: 'Source Sans Pro', sans-serif;
}

body{
  background-image: url(./world-map.jpg);

}

.container {
  max-width: 550px;
  margin: auto;
  text-align: center;
  border: 1px solid ;
  border-color: aqua;
  border-radius: 15px;
  height: max-content;
  justify-content: center;
  align-items: center;
  margin-top: 35px;
  color: #f1f1f1;
  /* background-color: #282A35; */
  background-color:cornflowerblue;
}
.container:hover{
  background-color: darkorchid;
}
h1 {
  margin-top: 50px;
  color: white;
  font-weight: bold;
  font-variant: normal;
  background-color: red;
}
.para-container {
  margin-top: 30px;
  font-size: 18px;
  font-weight: 600;

}
input[type=text] {
  padding: 10px;
  width: 40%;
  margin-right: 10px;
  border-radius: 15px;
  border: 2px solid black;
  font-weight: bold;
 font-family:'Source Sans Pro', sans-serif;
}

button {
  padding: 10px 20px;
  border: 2px solid black;
  border-radius: 15px;
  color: rgba(0, 0, 0, 0.723);
  font-weight: bold;
  height: 40px;
 font-family:'Source Sans Pro', sans-serif;
}

#result {
  margin-top: 30px;
  font-size: 24px;
  font-weight: bold;
  color: yellow;
}

#btn:hover {
  background-color: green;
}

#btn:active {
  background-color: darkmagenta;
}
