body {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    background-image: url(./images/background.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
  }

  @media (max-width: 1024px) {
    body {
        background-image: url(./images/mobile_background.jpg) !important;
    }
}
  
  header {
    text-align: center;
    padding: 20px;
  }
  
  #logo { 
    max-width: 450px;
  }
  
  #main-background {
    background-size: cover;
    padding: 50px;
    text-align: center;
  }
  
  #form-container {
    background: rgb(255 255 255 / 74%);
    display: inline-block;
    padding: 10px 50px;
    border-radius: 0px;
  }
  
  form {
    margin: 20px 0;
  }

  button[type="submit"] {
    background: var(--color-green);
    padding: 8px 18px;
    border: 1px solid green;
  }
  
    label { margin-bottom: 15px;display: block;}

  input[type="text"], input[type="password"] {
    display: block;
    margin: 10px auto;
    line-height: 25px;
    padding: 5px;
    width: 100%;
  }
  
  button {
    cursor: pointer;
  }
  
  .thumbnail {
    width: 100px;
    height: auto;
    margin: 0 10px;
    transition: transform 0.3s ease;
  }
  
  .thumbnail:hover {
    transform: scale(1.5);
  }
  
  footer {
    text-align: center;
    padding: 20px;
    background: #f1f1f1;
  }
  
  #cookie-bar {
    position: fixed;
    bottom: 0;
    background: #000;
    color: #fff;
    width: 100%;
    padding: 10px;
    text-align: center;
  }
  
  #cookie-bar button {
    margin-left: 20px;
  }
  

  #main-background a { color: black; }
  #thumbnails { margin-top: 20px; }

  @media (max-width: 100%) {
    #form-container {
      margin-left: auto;
    margin-right: auto;
  width:auto; }}
