/* styles.css */

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;  /* This is the color of the space on the left and right of the mobile view */
    margin: 0;
}

.mobile-container {

    max-width: 100%;
    padding: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    background-image: url("img/Kuendig_mobile_Website_Hintergrund_Muster_Wiederholbar.png");
    background-repeat: repeat;
    background-size: 270px;
    background-color: #00324F;

}

/* For devices with smaller width than 375px */
@media screen and (max-width: 375px) {
    .mobile-container {
        width: 100%;
    }
}

#logo{
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: fixed;
    width: 100%;
    left: 0;
    z-index: 5;
    background: linear-gradient(180deg, #00324F 40.63%, rgba(0, 50, 79, 0.00) 100%);
}
#logo img{
    width: 117px;
    height: auto;
    display: flex;
    margin-top: -25px;
}
#intro{
    background-image: url(img/Kuendig_mobile_Website_Bild_Start.png);
    background-position: center center;
    background-size: cover;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: flex-end;
    align-items: flex-end;
    justify-content: center;
}
#intro_content{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#video_content {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 40vh;
    padding-left: 10px;
    padding-right: 10px;
}

.responsive-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    width: 100%; /* This will ensure the wrapper takes up full width of its parent */
    overflow: hidden;
}

.responsive-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
h1{
    color: #D5AE80;
    text-align: center;
    font-family: 'DM Serif Text', serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px; /* 105.556% */
    text-transform: uppercase;
}
h2{
    color: #D5AE80;
    text-align: center;
    ffont-family: 'DM Serif Text', serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 120% */
}
#start_scroll{
    color: #D5AE80;
    text-align: center;
    font-family: 'DM Serif Text', serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 50px;
}
.imageHolder{
    display: flex;
    justify-content: center;
}
.imageHolder img{
    width: 85%;
    padding-top: 50px;
    position: relative;
    max-width: 375px;
}
.imageButton{
    display: flex;
    justify-content: center;
}
.imageButton img{
    height: 65px;
    padding-top: 15px;
    padding-bottom: 30px;
    position: relative;
}