@font-face {
    font-family: "Raleway";
    src:url('../font/Raleway-VariableFont_wght.ttf') format("truetype");
}
body {
    margin:0px;
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
}
.h2 {
    text-shadow: 2px 2px 10px rgba(255,255,0,0.8);

    /* background-color: rgba(0,0,0,0.01); */

    font-size: 36px;
}
h2 {
    margin-top: 0px;
    margin-bottom: 5px;
}
/* 
    Standart links für die Komplette Seite
*/
a {
    display: inline-flex; 

    color: rgba(0,0,0,0.6);
    text-shadow: 4px 4px 4px rgba(0,0,0,0.3);
    text-decoration: none;
}
a:hover {
    text-shadow: 2px 2px 2px rgba(0,0,0,0.3);
    transform: translate(2px,2px);
}


.include {
    width: inherit;
}
.responsive-container {
    min-height: 100vh;
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    /* background-color: aqua; */
}

.border {
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    padding-left: 80px;
    padding-right: 80px;

    max-width: 1440px;
    display: flex;
    flex-direction: inherit;
    justify-content: inherit;
    align-items: inherit;
    flex-wrap: inherit;
    gap: inherit;
    width: 100%;

}

.Xfixed {
    position:sticky;
    top:0px;
    width: 100%;
}

header {
    width: 100%;
    height: 60px;
    background-color: rgba(0,0,0,0.15);
    box-shadow:0 5px 10px rgba(0,0,0,0.15);
}
footer {
    width: 100%;
    height: 200px;
    background-color: rgba(0,0,0,0.9);
    color: rgba(255,255,0,0.8);
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow:0px -5px 5px 5px rgba(0,0,0,0.9);


}

section {
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
    /* background-color: rgba(75, 245, 75, 0.1); */
    background-color: rgba(0, 0, 0, 0.01);
}
.section_choose {
    flex: 1;
    display: flex;
    flex-wrap:wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;

    
}

.section_choose img {
    display: flex;
   /*  padding: 5px; */
    margin: 10px;
    border-radius: 10px;
    box-shadow: 10px 10px 20px  rgba(0,0,0,0.5);
    border: 1px solid rgba(0,0,0,0.5);
    width: calc(100px * 16 / 9);
    height: 100px;
    
    object-fit: cover;
    object-position: top left;
    overflow: hidden;
    transition: 200ms;

    

}
.section_choose img:hover {
    box-shadow: 5px 5px 10px  rgba(0,0,0,0.5);
    transform:translateX(5px) translateY(5px);
    transition: 200ms;
      
}

.section_display {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;

    min-height: 300px;
    box-shadow:0 5px 10px rgba(0,0,0,0.15);


}

.section_display img {
    width: auto;
    height: 190px;
    object-fit:cover;

}


.flexbr {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.profile {
    border: unset;
    border-radius: 50%;
    box-shadow: 0px 0px 20px rgba(255,255,255,0.3);
    padding: 0px;
    height: 96px;
    width: 96px;
    aspect-ratio: 1 / 1;
    object-fit:cover;
    flex-direction: row;

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

}
.flex-space {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.gap20 {
    gap: 20px;
}
#html-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.section_display a {
    text-decoration: none;
    color: rgba(0,0,0,0.8);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    background-color: rgba(0,0,0,0.1);
    background-image: linear-gradient(rgba(0,0,50,0.2), rgba(0,0,0,0.1));
    border-radius: 5px;
    padding: 10px;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    transition: 200ms;
    
}
.section_display a:hover {
    transform:translateX(2px) translateY(2px);
    box-shadow: 0px 0px 2px rgba(0,0,0,0.5);
}

a {
    cursor:pointer;
}
.scale {
    position: absolute;
    top: 0%;
    left: 0%;
    /* offset-position: */
    transform-origin: left top; /* left top; */
    transform: scale(5);
    /* transform: translateX(10); /*  !important; */
    transition: 200ms;
}

nav {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

nav a,.link {
    color: rgba(0,0,0,0.8);
    font-size: 18px;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);

}
nav a:hover.link:hover {
    transform:translateX(2px) translateY(2px);
    text-shadow: 0px 0px 2px rgba(0,0,0,0.5);
}

footer {
    display: flex;
}

footer a {

    color: rgba(255,255,255,0.8);
    font-size: 18px;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.8);
}

footer a:hover {
    transform:translateX(2px) translateY(2px);
    text-shadow: 0px 0px 2px rgba(255,255,255,0.8);
}
.sprachen {
    display: flex;
    gap: 20px;
    font-weight: 700;
}
.sprachen span {
    background-color: rgba(0,0,0,0.2);
    border-radius: 5px;
    color: rgba(0,0,0,0.8);
    box-shadow: 4px 4px 8px rgba(0,0,0,0.5);
    padding: 5px;
    margin-bottom: 2px;
    /* transform: translateY(-50px); */
}

a.smallbutton {
    display: inline-flex;
    box-sizing: border-box;
    padding: 2px 10px;
    margin: 4px;
    border: 0;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-row {
    display: flex;
    flex-direction: row;
}
.impressum a {
    font-weight: 700;
}

.impressum th {
    text-align:left;
}