body {
    font-family: Arial, sans-serif;
    background: #1196ff15;
    margin: 0;
    padding: 0;
    text-align: center;
  }
  
  .search-container {
    margin-top: 20vh;
  }
  
  .searchbar{
  display: flex;
  flex-direction: row; 
  align-items: center;
  justify-content: center;
  }
  
  .header{
    font-size: 50px;
    font-weight: bold;
    color: #37a7ff;
  }
  
  .sub-header{
    font-size: 10px;
    font-weight: light;
  }
  
  input[type="text"] {
    margin: 10px;
    padding: 15px 30px;
    width: 55%;
    font-size: 16px;
    border-radius: 30px;
    border: 1px solid #e0e0e0;
    outline: none;
  }
  
  .search-bar {
    margin-top: 10px;
  }
  
  #results {
    text-align: left;
    margin: 30px auto;
    width: 60%;
  }
  .result-item {
    margin-bottom: 20px;
  }
  .result-item a {
    color: #1a0dab;
    font-size: 1.2em;
    text-decoration: none;
  }
  .result-item p {
    color: #4d5156;
  }
  
  footer {
    position: fixed;
    background-color: #eeeeee;
    width: 100%;
    text-align: center;
    bottom: 0;
    font-weight: light;
    font-size: 8px;
    color: black;
  }

  button {
    margin: 5px;
    padding: 15px 30px;
    font-size: 1em;
    margin: 5px;
    border-radius: 30px;
    border: none;
    background-color: #4285f4;
    color: white;
    transition: background-color 0.5s ease;
  }
  
  button:hover {
    background-color: #3367d6;
  }
  