* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", sans-serif;
  color: rgb(48, 48, 48);
  height: 130vh;
}
.search {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
input[type="text"] {
  max-width: 400px;
  width: 100%;
  text-align: center;
  height: 40px;
  border-radius: 5px;
  margin-bottom: 20px;
  border: 1px solid rgb(58, 58, 58);
}
input[type="text"]:focus {
  outline: none;
}
.search-btn {
  margin-bottom: 50px;
  padding: 10px 50px;
  background-color: rgb(242, 255, 62);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.5s ease;
}
.search-btn:hover {
  box-shadow: 0px 3px 20px rgba(39, 39, 39, 0.3);
}
.search-btn:focus {
  outline: none;
}
.text {
  font-size: 24px;
  font-weight: bold;
  margin-top: 50px;
  margin-bottom: 20px;
}

.card {
  width: 400px;
  border-radius: 5px;
  background-color: rgb(240, 240, 240);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 60px;
}
.info {
  padding: 50px 30px;
  margin-left: 30px;
}
.country-flag {
  width: 400px;
  height: auto;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.country-name {
  font-size: 30px;
  margin-bottom: 15px;
}
.country-cap {
  margin-bottom: 10px;
}
.country-pop {
  margin-bottom: 10px;
}
.country-currency {
  margin-bottom: 10px;
}
