
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    /* background-image: url(./splash.jpg); */
    /* min-height: calc(100vh + 200px); */
    background: url(./splash.jpg) no-repeat;
    background-attachment: fixed;
    background-size: cover;
    /* max-height: 100vh; */
    /* overflow-y: hidden; */
    display: flex;
        width: 50%;
        height: 600px;
        margin: auto;
        border-radius: 10px;
        background-position-y:bottom;
        align-items:center;
        justify-content:center;
  }
  
  header {
    width: 100%;
  }
  .content{
    /* margin-top: 9vh; */
    background: rgb(255 255 255 / 86%);
    padding: 26px;
    border-radius: 35px
  }
  ul {
    list-style: none;
  }
  
  /* NAV BAR */
  #nav_bar {
    float: right;
  }
  
  #nav_bar li {
    display: inline-block;
    padding: 8px;
  }
  
  #nav_bar #sign_in {
    background: #4887ef; 
    margin-right: 25px;
    padding: 7px 15px;
    border-radius: 3px; 
    font-weight: bold;
  }
  
  .nav-links {
    color: #404040;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  li.nav-links a:hover {
    text-decoration: underline;
  }
  
  #sign_in:hover { 
    box-shadow: 1px 1px 5px #999;
  }
  
  #sign_in {
    color: #fff;
  }
  
  /* GOOGLE AREA */
  .google #google_logo {
    text-align: center;
    display: block;
    margin: 0 auto;
    clear: both;
 
    padding-bottom: 20px;
  }
  
  .form {
    text-align: center;
  }
  
  #form-search { 
    width: 480px;
    line-height: 32px;
    padding: 20px 10px;
  }
  
  .form #form-search {
    padding: 0 8px;
  }
  
  /*#form-search:hover {
    border-color: #e4e4e4;
    padding-top: 0;
  }*/
  
  .buttons {
    text-align: center;
    padding-top: 30px;
    /* margin-bottom: 300px; */
  }
  
  /* FOOTER */
  footer  {
    background-color: rgb(0, 0, 0,.5);
    border-top: solid 1px #2c9242;
    position: fixed;
    bottom: 0;
   
    width: 100%;
    
  }

  .searchInput {
      outline: none;
      padding: 17px 12px;
      height: 0;
      line-height: 0;
      border: 3px solid orange;
      border-radius: 20px;
      background-color: whitesmoke ;
    }
    
    .searchButton {
    width: fit-content;
    padding: 5px 26px;
    border-radius: 32px;
    background-color: orange;
    color: blacl;
    color: black;
    font-size: 1rem;
    font-weight: 700;
    border: 1px solid orange;
    outline: none;
    }
  
    .main-logo {
      /* width: 100%; */
      /* background-color: rgb(0, 0, 0,.5); */
    }
  /* MEDIA QUERIES */
  
  @media screen and (max-width: 400px) {
   
   li.nav-links a {
      display: none;
    }
    
   #google_logo {
     padding: 0;
   }
    
   .buttons {
     /* display: none; */
   }
    
   #form-search {
    width: calc(80vw - 80px);
  
   }
    
   footer {
     bottom: 0;
   }
    

  }
  
  @media screen and (max-width: 565px) {
   
    li.nav-links a {
      display: none;
    }
    
    
   #google_logo {
     padding: 0;
   }
    
   .buttons {
     /* display: none; */
   }
    
   #form-search {
    width: calc(90vw - 80px);
   }
    
   footer {
  /*    bottom: 0;
     postion: absolute; */
     position:fixed;
     background-color: rgb(0, 0, 0,.5);
     bottom:0;
     width:100%;
     color: white;
   }
    
  }
  
  @media screen and (max-width: 390px){
    #form-search{
      width:270px;
    }
  }
  
  
  
  
  
  
  
  
  
  