@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

/* Schirftart */


/* scrollbar */

::-webkit-scrollbar {
    width: 15px;
}


/* Track */

 ::-webkit-scrollbar-track {
    background: #EBE2D38C;
}


/* Handle */

 ::-webkit-scrollbar-thumb {
    background: #EBE2D3;
}


/* Handle on hover */

 ::-webkit-scrollbar-thumb:hover {
    background: #EBE2D3;
}

html,
body,
button,
input,
select {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
}

body {
    background-color: #ACA69B;
    overflow: overlay;
}

b,
em {
    font-weight: bold;
}

a {
    color: #00000082;
    white-space: nowrap;
}

#main {
    box-shadow: 0px 3px 6px #00000029;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    background-color: white;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    text-align: left;
    overflow: auto;
}

#header {
    height: 50px;
    background-color: #ACA69B8A;
    box-shadow: 0px 3px 6px #00000029;
    color: white;
    font-size: 25px;
    padding-left: 10%;
    padding-right: 2%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

#text {
    flex-grow: 1;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 5%;
    overflow-y: scroll;
    overflow: overlay;
    min-height: 2em;
}

@-moz-document url-prefix() {
    #tab-content {
        scrollbar-color: #EBE2D3 #EBE2D38C;
    }
}

#back-link {
    color: white;
    text-decoration: none;
    cursor: pointer;
}

#back-link:hover {
    text-decoration: underline;
}