*, *::after, *::before {
  box-sizing: border-box;
}
body{
  z-index: 110;
  background:none;
}
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 200ms ease-in-out;
  border: 1px solid black;
  border-radius: 10px;
  z-index: 110;
  background-color: rgb(70, 70, 70);
  width: 900px;
  height: 500px;
  max-width: 80%;
}

.modal.active {
  transform: translate(-50%, -50%) scale(1);
}

.modal-header {
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid black;
}

.modal-header .title {
  font-size: 1.25rem;
  font-weight: bold;
}

.modal-header .close-button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  font-size: 1.25rem;
  font-weight: bold;
}

.modal-body {
  padding: 10px 15px;
}

#overlay {
  position: fixed;
  opacity: 0;
  transition: 200ms ease-in-out;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, .5);
  pointer-events: none;
}

#overlay.active {
  opacity: 1;
  pointer-events: all;
}

.google{
  width: 280px;
  height: auto;
}

.bar{
  margin:0 auto;
  width:375px;
  border-radius:30px;
  border:1px solid #858585;
  box-shadow: 1px 1px 8px 1px #858585;
  outline: none;
}
.serch{
  height:35px;
  border:none;
  width:300px;
  font-size:14px;
  outline: none;
  position:relative;
  top:6px;
  left:10px;
  background-color:  rgb(70, 70, 70);
}

h1{
  text-align: center;
}

.favico{
  width: 32px;
  height: auto;
}
button{
  outline: none;
  background: none;
  border: none;
}