body{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: center;
    font-family: Quicksand, sans-serif;
    scrollbar-width: none;
    overflow: auto;
}

.header-line{
    display: flex;
    font-family: Quicksand, sans-serif;
    font-size: 1rem;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.892);
}

.header-line img{
    width: 25px;
    height: 25px;
    margin-right: 0.5rem;
}

h1{
    font-family: 'Ephesis', cursive;
    font-size: 3rem;
    font-weight: 100;
    margin: 0rem;
    padding: 0rem;
    color: rgba(47, 178, 176, 0.892);
}

.h1extra{
    font-size: 4rem;
}

body::after{
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/mountains.png');
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.5;
    z-index: -2;
}

.container{
    margin: 1rem;
    position: relative;
    background-color: rgba(255, 255, 255, 0.02);
    opacity: 1;
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 90%;
    max-width: 1000px;
    max-height: 1200px;
    border-radius: 1rem;
    padding: 3rem;
    overflow: auto;
}

.container-header{
    position: relative;
    opacity: 1;
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40%;
    max-width: 300px;
    height: 30px;
    padding: 1rem;
    overflow: auto;
}

.container::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 2rem;
    background-color: rgba(247, 234, 234, 0.7);
    filter:blur(15px);
}

.btn{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(47, 178, 176, 0.73);
    color: rgb(255, 255, 255);
    margin: 1rem;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    margin-top: 1rem;
    font-size: 1rem;
    font-family: Quicksand, sans-serif;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    height: 3rem;
    max-width: 80%;
    min-width: 100px;
}

.mini{
    font-size: 0.8rem;
    border-radius: 3rem;
    max-height: 2.4rem;
    max-width: 7rem;
}

.btn:hover{
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
}

.btn-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.youtube{
    width: 30px;
    height: 30px;
    margin-right: 0.7rem;
}

h1{
    text-align: center;
}

.code-input{
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1rem;
    width: 100%;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
}

.code-input:focus{
    outline: none;
}

.code-input::placeholder{
    font-size: 1rem;
    font-weight: bold;
}

.code-button{
    background-color: rgb(169, 207, 138);
    color: rgb(0, 0, 0);
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: bold;
}

.code-button:hover{
    background-color: rgb(129, 187, 74)
}

.language-box{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem 1rem;
    top:0;
    right: 0;
}

.language-box img{
    width: 50px;
    height: 50px;
    cursor: pointer;
    margin: 0 0.5rem;
    transition: all 0.3s ease-in-out;
}

.language-box img:hover{
    transform: scale(1.2);
    transition: all 0.3s ease-in-out;
}   

iframe{
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0.5rem;
}

.timeline{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 2500px;
    border-radius: 0.5rem;
    overflow: auto;
}

.recommendations{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: auto;
}

.recommendation{
    /*border: 2px solid rgba(47, 178, 176, 0.73);*/
    border-radius: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 90%;
}

.reco_left{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.reco_img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: .5rem;
}

.anmeldung-form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 0.5rem;
    overflow: auto;
}

.anmeldung-form-person{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.anmeldung-form-person input{
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 0.5rem;
    padding: 0.3rem;
    margin: 0.5rem;
    width: 10rem;
    height: 2rem;
    font-size: 1.2rem;
}

.anmeldung-form input{
    background-color: rgba(255, 255, 255, 0.5);
    text-align: center;
    border: none;
    border-radius: 0.5rem;
    padding: 0.3rem;
    margin: 0.5rem;
    width: 15rem;
    height: 2rem;
    font-size: 1.2rem;
}

ul{
    list-style-type: circle;
    padding: 0;
    margin: 0;
    text-align: left;
}

ol{
    list-style-type: decimal;
    padding: 0;
    margin: 0;
    text-align: left;
}

a{
    text-decoration: none;
    color: rgba(47, 178, 176, 0.892);
}

.preboda-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.login-form{
    margin-top: 5rem;
    place-self: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    border-radius: 0.5rem;
    overflow: auto;
    
}

.login-form input{
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 0.5rem;
    padding: 1rem;
    margin: 1rem;
    font-size: 1rem;
    max-width: 15rem;
    width: 90%;
}

.login-form button{
    background-color: rgba(47, 178, 176, 0.73);
    color: rgb(255, 255, 255);
    padding: 1rem;
    border: none;
    border-radius: 1rem;
    cursor: pointer;
    margin-top: 1rem;
    font-size: 1rem;
    font-family: Quicksand, sans-serif;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.login-form button:hover{
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
}

.login-form label{
    font-size: 0.8rem;
    font-weight: bold;
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
    .container, .container-header, .login-form {
        width: 90%;
        padding: 1.5rem;
    }

    .btn, .code-button {
        width: 100%;
        padding: 0.5rem;
    }

    .code-input, .login-form input {
        width: 100%;
    }

    .language-box img {
        width: 40px;
        height: 40px;
    }

    h1 {
        font-size: 2rem;
    }

    .h1extra {
        font-size: 3rem;
    }

    .container-header{
        position: relative;
        opacity: 1;
        display: flex;
        position: relative;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        width: 50%;
        align-self: flex-start;
    }
}

.star {
    width: 15px;
    height: 15px;
    vertical-align: middle;
}

table {
    width: 90%;
    border-collapse: collapse;
}

table, th, td {
    margin: 0.1rem;
    padding-bottom: 0.3rem;
}

table tr:hover {
    background-color: #ddd;
}





  .type--C {
    --line_color: rgba(0, 0, 0, 0.892);
    --back_color: rgba(47, 178, 176, 1);
  }
  .button {
    background-color: #ffffff00;
    position: relative;
    z-index: 0;
    width: 240px;
    height: 56px;
    text-decoration: none;
    font-size: 1.3px;
    font-weight: bold;
    color: var(--line_color);
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: none;
  }
  .button__text {
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  .button::before,
  .button::after,
  .button__text::before,
  .button__text::after {
    content: "";
    position: absolute;
    height: 3px;
    border-radius: 2px;
    background: var(--line_color);
    transition: all 0.5s ease;
  }
  .button::before {
    top: 0;
    left: 54px;
    width: calc(100% - 56px * 2 - 16px);
  }
  .button::after {
    top: 0;
    right: 54px;
    width: 8px;
  }
  .button__text::before {
    bottom: 0;
    right: 54px;
    width: calc(100% - 56px * 2 - 16px);
  }
  .button__text::after {
    bottom: 0;
    left: 54px;
    width: 8px;
  }
  .button__line {
    background-color: #ffffff00;
    position: absolute;
    top: 0;
    width: 56px;
    height: 100%;
    overflow: hidden;
  }
  .button__line::before {
    content: "";
    position: absolute;
    top: 0;
    width: 150%;
    height: 100%;
    box-sizing: border-box;
    background-color: #ffffff00;
    border-radius: 300px;
    border: solid 3px var(--line_color);
  }
  .button__line:nth-child(1),
  .button__line:nth-child(1)::before {
    left: 0;
  }
  .button__line:nth-child(2),
  .button__line:nth-child(2)::before {
    right: 0;
  }
  .button:hover {
    letter-spacing: 6px;
  }
  .button:hover::before,
  .button:hover .button__text::before {
    width: 8px;
  }
  .button:hover::after,
  .button:hover .button__text::after {
    width: calc(100% - 56px * 2 - 16px);
  }
  .button__drow1,
  .button__drow2 {
    position: absolute;
    z-index: -1;
    border-radius: 16px;
    transform-origin: 16px 16px;
  }
  .button__drow1 {
    top: -16px;
    left: 40px;
    width: 32px;
    height: 0;
    transform: rotate(30deg);
  }
  .button__drow2 {
    top: 44px;
    left: 77px;
    width: 32px;
    height: 0;
    transform: rotate(-127deg);
  }
  .button__drow1::before,
  .button__drow1::after,
  .button__drow2::before,
  .button__drow2::after {
    content: "";
    position: absolute;
  }
  .button__drow1::before {
    bottom: 0;
    left: 0;
    width: 0;
    height: 32px;
    border-radius: 16px;
    transform-origin: 16px 16px;
    transform: rotate(-60deg);
  }
  .button__drow1::after {
    top: -10px;
    left: 45px;
    width: 0;
    height: 32px;
    border-radius: 16px;
    transform-origin: 16px 16px;
    transform: rotate(69deg);
  }
  .button__drow2::before {
    bottom: 0;
    left: 0;
    width: 0;
    height: 32px;
    border-radius: 16px;
    transform-origin: 16px 16px;
    transform: rotate(-146deg);
  }
  .button__drow2::after {
    bottom: 26px;
    left: -40px;
    width: 0;
    height: 32px;
    border-radius: 16px;
    transform-origin: 16px 16px;
    transform: rotate(-262deg);
  }
  .button__drow1,
  .button__drow1::before,
  .button__drow1::after,
  .button__drow2,
  .button__drow2::before,
  .button__drow2::after {
    background: var(--back_color);
  }
  .button:hover .button__drow1 {
    animation: drow1 ease-in 0.06s;
    animation-fill-mode: forwards;
  }
  .button:hover .button__drow1::before {
    animation: drow2 linear 0.08s 0.06s;
    animation-fill-mode: forwards;
  }
  .button:hover .button__drow1::after {
    animation: drow3 linear 0.03s 0.14s;
    animation-fill-mode: forwards;
  }
  .button:hover .button__drow2 {
    animation: drow4 linear 0.06s 0.2s;
    animation-fill-mode: forwards;
  }
  .button:hover .button__drow2::before {
    animation: drow3 linear 0.03s 0.26s;
    animation-fill-mode: forwards;
  }
  .button:hover .button__drow2::after {
    animation: drow5 linear 0.06s 0.32s;
    animation-fill-mode: forwards;
  }
  @keyframes drow1 {
    0% {
      height: 0;
    }
    100% {
      height: 100px;
    }
  }
  @keyframes drow2 {
    0% {
      width: 0;
      opacity: 0;
    }
    10% {
      opacity: 0;
    }
    11% {
      opacity: 1;
    }
    100% {
      width: 120px;
    }
  }
  @keyframes drow3 {
    0% {
      width: 0;
    }
    100% {
      width: 80px;
    }
  }
  @keyframes drow4 {
    0% {
      height: 0;
    }
    100% {
      height: 120px;
    }
  }
  @keyframes drow5 {
    0% {
      width: 0;
    }
    100% {
      width: 124px;
    }
  }
  
  .container-button {
    width: 50%;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  .button:not(:last-child) {
    margin-bottom: 64px;
  }