/* Styles for desktop and larger screens */
@media (min-width: 768px) {
  .wartungsarbeiten {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 15vh;
    min-width: 100vh;
    background-color: #1E4387;
    color: #FFFFFF;
    font-size: 50px;
    margin-top: 5%;
  }
  .message {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-width: 100vh;
    min-height: 15vh;
    color: #4B4842;
    font-size: x-large;
    background-color: white;
  }
  .footer {
    display: flex;
    left: 0;
    bottom: 0;
    width: 100%;
    color: #4B4842;
    margin-top: 10%;
    justify-content: center;
    align-items: center;
  }
  .logo {
    position:fixed; 
    top: 0; 
    left: 0;
    width: 10%;
    height: 10%;
  }

  .w-logo {
    width: 200px;
  }
}

/* Styles for mobile devices */
@media (max-width: 767px) {
  .wartungsarbeiten {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 15vh;
    background-color: #1E4387;
    color: #FFFFFF;
    font-size: xx-large;
    margin-top: 5%;
  }
  .message {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 40vh;
    color: #4B4842;
    font-size: x-large;
    background-color: white;
  }
  .footer {
    display: flex;
    left: 0;
    bottom: 0;
    width: 100%;
    color: #4B4842;
    margin-top: 5%;
    justify-content: center;
    align-items: center;
    padding: 10px;
    text-align: center;
    font-size: small;
  }
  .logo {
    width: 50%;
    height: 50%;
    margin: 0 auto;
    text-align: center;
    top: 50%;
    transform: translate(0, -50%);
  }

  .w-logo {
    width: 200px;
  }
}