@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #001514;
  }
  
  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .search {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .result {
    width: 400px;
    height: 300px;
    max-width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    font-family: 'Montserrat';
    color: #f3eff5;
    overflow: auto;
  }
.Search{
    all: unset;
    background-color: #001514;
    border: none;
    height: 50px;
    width: 400px;
    background-color: #406e8e;
    border: 0.2rem solid #fff;
    border-radius: 2rem;
    box-shadow: 0 0 .2rem #fff,
                0 0 .2rem #fff,
                0 0 2rem #02a9ea,
                0 0 0.8rem #02a9ea,
                0 0 2.8rem #02a9ea,
                inset 0 0 1.3rem #02a9ea;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat';
    text-align: center;
    font-size: 100%;
    color: #f3eff5;
}  
*:-ms-input-placeholder{
    color: #fff;
}
* ::-ms-input-placeholder{
    color: #fff;
}
*::placeholder{
    color: #fff;
    opacity: 1;
}
a {
  font-family: 'Montserrat';
  color: #f3eff5; 
  text-decoration: none; 
}

a:hover {
  color: #8c8a8d; 
  text-decoration:none; 
}
h1{
  color: #f3eff5;
  font-family: 'Montserrat';
  font-size: 80px;
}
p{
  color: #f3eff5;
  font-family: 'Montserrat';
  font-size: 25px;
  margin-bottom: 40px;
}
/* Media query for tablets */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
   .Search{
    width: 600px;
   }
   .result{
    width: 600px;
   }
}

/* Media query for phones */
@media only screen and (max-width: 767px) {
  .Search{
    width: 300px;
  }
  .result{
    width: 300px;
  }
}
