@import url("https://fonts.googleapis.com/css?family=Muli&display=swap");

#root {
  color: #333;
}
html {
  box-sizing: border-box;
  font-size: 62.5%;
}
* {
  box-sizing: border-box;
}

body {
  background-image: linear-gradient(45deg, #b2e2e6, #8bc9c6);
  font-family: "Muli", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  font-size: 2rem;
}

h2 {
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 2rem;
  font-size: 2rem;
  letter-spacing: 0.2rem;
}
.container {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 1200px;
}
input,
select {
  border: 1px solid #dedede;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  font-size: 14px;
  padding: 8px 10px;
  margin: 0;
}
label {
  color: red;
}
input[type="text"] {
  width: 300px;
}

.search-btn {
  cursor: pointer;
  border-left: 0;
  border-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.show {
  background-color: rgb(22, 92, 97);
  border-radius: 10px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  max-width: 100%;
  margin: 20px;
  overflow: hidden;
  width: 1200px;
}

.show h6 {
  opacity: 0.6;
  margin: 10px 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}

.show h2 {
  letter-spacing: 1px;
  margin: 10px 0;
}

.show-preview {
  background-color: #3b8895;
  color: rgb(250, 234, 234);
  padding: 30px;
  max-width: 250px;
}

.show-preview a {
  color: #fff;
  display: inline-block;
  font-size: 12px;
  opacity: 0.6;
  margin-top: 30px;
  text-decoration: none;
}

.show-info {
  padding: 30px;
  position: relative;
  width: 100%;
  /* display: flex; */
}
.show-info h6 {
  margin-top: 20px;
  text-align: center;
  font-size: 2.5rem;
}
