/*Allgemeine Struktur*/
html{
    background-color: rgb(237, 231, 226);
}
body{
    font-family: carattere-regular;
    font-weight: 500;
    line-height: 1.5;
    display: grid;
    grid-template-areas: 
    "header"
    "main"
    "footer";
}

/*Schriften, Absätze formatieren*/
#main{
    display: flex;
    justify-content: center;
}
.header{
    background-color: rgba(24, 43, 126, 0.921);
    box-shadow: inset 0 0px 15px #000000;
}
.footer{
    background-color:  rgba(24, 43, 126, 0.921);
    box-shadow: inset 0 0px 15px #000000;
    height: 100px;
    font-size: 20px;
}
#pinselworkstation{
    background-color: rgba(248, 193, 130, 0.595);
    height: 100%;
    
    display: flex;
    flex-direction: column;
    align-items: center;
}
#intro{
    text-align: center;
    font-size: 30px;
    margin: 2rem;
    max-width: 700px;
}
h1{
    font-size: 60px;
}
h3{
    color: rgba(255, 115, 0);
}
a{
    text-decoration: none;
    color: whitesmoke;
}
a:hover{
    color: rgb(255, 115, 0);
}
li{
    list-style: none;
}
.current{
    color: orange;
}
p{
    padding-bottom: 1rem;
}
#data{
    color: rgb(159, 155, 155);
}
#data:hover{
    color: rgba(0, 0, 0, 0.723);
}
#contact{
    color: orange;
    text-decoration: underline;
    font-size: 30px;
    font-family: carattere-regular;
}
#contact:hover{
    color: orangered;
    font-size: 31px;
}
table{
    border-spacing: 0.5rem;
}
fieldset{
    background-color: gainsboro;
    border-radius: 5px;
}
#imprint{
    margin: 3rem;
    padding: 2rem;
    border: 2px solid rgba(0, 0, 0, 0.529);
    background-color: rgba(128, 128, 128, 0.449);
    border-radius: 5px;
    max-width:60%;
    font-size: 30px;
}
#lawconcerning{
    margin: 3rem;
    font-size: 30px;
}
.copy{
    color: whitesmoke;
}
#galerielink{
    color: rgb(91, 91, 91);
}
#galerielink:hover{
    color: rgba(255, 115, 0);
}

/*responsive Navigation*/

nav a{
    display: block;
}
nav ul{
    display: flex;
    justify-content: space-around;
}

/*Bilder formatieren*/

#profilpic{
    max-width: auto;
    height: 300px;
    border: 0.5rem;
    border-style: groove;
    border-color: black;
}
#wasser{
    width: 100%;
    height: 300px;
}
.skizzen{
   border: 1px;
   border-style: solid;
   border-color: rgba(231, 189, 135, 0.537);
    margin-top: 2rem;
    width: 200px;
    height: auto;
    opacity: 0.8;
    user-select: none;
}

/*Slideshow*/
* {box-sizing:border-box}
.slideshowcontainer{
    background-image: url(../Bilder/Webdesign/Steinwand.jpg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.8;
    position: relative;
    margin-top: 4rem;
    margin-bottom: 4rem;
    margin-left: 2rem;
    margin-right: 2rem;
    display: flex;
    justify-content: center;
}
.slides{
    display: none;
    margin: 2.5rem;
}
img{
    width: auto;
    height: 500px;
    user-select: none;
    border: 8px solid rgb(165, 127, 76);
}
header img{
    width: auto;
    user-select: none;
    border: none;
}
.text{
    position: absolute;
    color: whitesmoke;
    bottom: 4rem;
    margin-left: 1rem;
}
.numbers{
    position: absolute;
    color: whitesmoke;
    margin: 1rem;
}
.watermark{
    color: rgba(245, 245, 245, 0.611);
    font-family: carattere-regular;
    font-weight: 900;
    font-size: 80px;
    margin: 4rem;
    text-align: center;
    width:80%;
}

/*Webfonts einbinden*/
.carattere-regular {
  font-family: "Carattere", cursive;
  font-weight: 400;
  font-style: normal;
}
@import url('https://fonts.googleapis.com/css2?family=Carattere&display=swap');
@font-face {
    font-family: carattere-regular;
    src: url(Carattere-Regular.ttf);
}
