@charset "utf-8";

* {
    box-sizing: border-box;
}

/*ALLGEMEIN*/

body {
    height: 150vh;
    margin: 0;
    
	font-family: 'Roboto', sans-serif;
    background-color: white;
}

section {
	padding-right: 2%;
	padding-left: 2%;
	padding-top: 4em;
	min-height: 150vh;
}

h2 {
    font-weight: 500;
}

p {
    font-weight: 100;
    line-height: 1.4em;
}

img {
    width: 100%;
    height: auto;
}

/*MENÜ*/

nav {
    background-color: white;
    padding: 1em;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav a {
    margin-right: 2em;
    padding-right: 1em;
    text-decoration: none;
    color: black;
    font-weight: 500;
}

nav a:last-child {
    margin-right: 0
}

nav a:hover,
.active {
    font-style: italic;
}

.namelogo:hover,
.namelogo.active {
    font-style: normal;
}

.namelogo {
    font-weight: 900;
    margin-right: 20%;
    font-size: 1.15em;
}

.logo {
    width: 3%;
    height: auto;
    float: right;
}

/*HOME*/

#home {
    padding-top: 0;
}

#home figure {
    display: inline-block;
    width: 72%;
    margin: 0;
}

.hometext {
    width: 25%;
    display: inline-block;
    margin-top: 30%;
}

#home article {
    margin-top: 3em;
}

h1 {
    text-decoration: none;
    font-size: 2em;
    font-weight: 100;
}



/*start*/

#start img {
    width: 100%;
    display: inline-block;
}

#start article {
    text-align: center;
    width: 30%;
    padding: 0;
    display: inline-block;
}

#start a {
    padding: 2% 0 2% 0;
    text-decoration: none;
    color: black;
}

#start h3,
p {
    padding-bottom: 2em;
}

.startself {
	position: relative;
	width: 50%;
	display: inline-block;
}

.startlinks {
	width: 45%;
	display: inline-block;
	float: right;
	padding-top: 1em;
}

.startlinks h3 {
    cursor: pointer;
}

.startself figure {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    margin: 0;

    opacity: 0;
    -webkit-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

.startself figure.current {
    opacity: 1;
}


/*---------------*/
#contact {
    padding: 2em 5em 0em 5em;
    height: auto;
    text-align: center;
    margin-bottom: 15%;
    margin-right: 35%;
    margin-left: 35%;
    border: solid 1px;
    min-height: 0;
}

#contact h4 {
    margin-bottom: 0;
}

#contact p {
    font-size: 0.8em;
    margin-bottom: 3em;
}

#contact a {
    color: darkgray;
    text-decoration: none;
    font-weight: 100;
}
#contact img {
    width: 184px;
    height: 23px;
}


footer {
    font-size: 0.7em;
    padding-left: 1em;
    padding-bottom: 0.5em;
}
