@import url('https://fonts.googleapis.com/css2?family=Poetsen+One&display=swap');
@font-face {
    font-family: 'akko';
    src: url('/fonts/AKKOPRO-REGULAR.OTF');
    font-weight: normal;
    font-style: normal;
  }
  @font-face {
    font-family: 'akkobold';
    src: url('/fonts/AKKOPRO-MEDIUM.OTF');
    font-weight: normal;
    font-style: normal;
  }
*{
    padding: 0;
    margin: 0;

}
body{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/CasaPuraVida/1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    animation: change 60s infinite ease-in-out ;
    z-index: -1; /* Achter alle andere content */
}
html, body{
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.video-bg{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
h1{
    color: pink;
    font-family: "Poetsen One", sans-serif;
    font-size: clamp(25px, 2vw, 2.5vw);
    font-style: normal;
}
.right h1{
    margin-bottom: 10px;
}
p{
    color: white;
    font-family: "akko", sans-serif;
}
li{
display: inline-block;
}
a{
    text-decoration: none;
    font-size: 30px;
    padding: 0 5px 0 5px;
    font-family: 'akko';
    color: pink;
}
.layer{
    display: flex;
    width: 70%;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0 auto;
    flex-wrap:wrap;
}
.container{
    display: block;
    width: 80%;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    height: auto;
    margin: 0 auto;
    flex-wrap:wrap;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    border: 15px solid pink;
    border-radius: 50px;
}
.one{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    height: auto;
    margin: 0 auto;
    flex-wrap:wrap;
}
.two{
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: -120px;
}
.left img{
    width: 200px;
    height: 200px;
    object-fit: cover;
    object-position: center;
    margin: 20px;
    border: 5px solid pink;
    border-radius: 50px;
}
.right{
    width: auto;
    max-width: 50%;
}

@media (max-width: 1067px){
    .container{
        width: auto;
        margin-bottom: px;
    }
    .two{
        margin-top:10px;
        margin-bottom: 10px;
    }
}
