/* style.css */
body, html {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('bg.webp') no-repeat center center fixed;
    background-size: cover;
    background-position: center;
    font-family: 'Arial', sans-serif;
}

.container {

    width: 88%;
    max-width: 540px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 40px 60px 10px;
    margin: 0 6vw;
    text-align: center;
}

.videocontainer {
    padding: 30px;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
}

header .logo {
    width: 250px;
}

main {
    margin-top: 40px;
}

.intro-section {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.column {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.intro-text {
    font-size: 22px;
    color: #caa658; 
    text-align: left;
    padding: 10px;
}

.ueberschriftbild img{
    margin-top: -15px;
}

.portrait {
    padding: 10px;
}

.portrait .video-button {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #333;
    border: 3px solid #1e4173;
    transition: transform 0.3s ease;
    animation: pulsate 1.5s infinite;
}

.video-button img, .round-button img, .back-button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.videocontainer video {
    width: 100%;
    height: auto;
}



.round-button-container {
    position: absolute;
    top: 13px;
    right: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index:10
}

.round-button {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #1e4173;
    transition: transform 0.3s ease;
    animation: pulsate 1.5s infinite;
}

.video-button:hover, .round-button:hover {
    transform: scale(1.1);
}

.back-button-container {
    position: absolute;
    bottom: 13px;
    left: 6%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index:10
}

.back-button {
    width: 40px;
    height: 40px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.back-button img {
    filter: invert(1) brightness(2);
}

.dialog-button-container{
    position: absolute;
    bottom: 10px;
    
}

main p {
    text-align: justify;
    font-size: 18px;
    color: #333;
    margin: 20px 0 30px;
}

.dialog-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 18px;
    color: #fff;
    background-color: #f5a623;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dialog-button:hover {
    background-color: #e59400;
}

footer {
    margin-top: 50px;
    font-size: 14px;
    color: #666;
}

iframe {
    width: 870px;
    max-width: 88%;
    height: 75%;
    border:none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    z-index: 5;
}
}