/* CSS für die Seite Bilder und Videos */

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: #333;
}

header {
    background-color: green;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.action-link {
    background-color: green;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    margin: 10px;
    border-radius: 10px;
    font-size: 32px;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
}

.action-link:hover {
    background-color: darkgreen;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px;
}

.actions a {
    flex-basis: calc(50% - 20px); /* 50% Breite minus den äußeren Abständen von 10px */
}


.footer {
    background-color: green;
    color: #fff;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

@media screen and (min-width: 768px) {
 body {background-image: url(mk1.jpg);
    background-size: cover;
      background-image: url('mk1.jpg');
      background-position: center;
      background-repeat: no-repeat;
      
    }
  }

  /* Mobile Hintergrundbild */
  @media screen and (max-width: 767px) {
    body {
      background-image: url('mk.jpg');
      background-size: 70% 50%;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
    }
  }