@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.ttf') format('truetype');
}

*{
	font-family: Arial, sans-serif;
}

html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

body {
    background-color:white;
}

body::after {
    content: "";
    background: url(../assets/Iso100_2.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    opacity: 0.95;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: fixed;
    z-index: -4;   
}

.navbar {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: absolute;
	right: 0;
    top: 0;
    height: 6%;
    margin-top: 2%;
    margin-right: 2%;
}

.navbar li {
    float: left;
    height:inherit;
}

.navbar a {
    display: block;
    color: azure;
    height:inherit;
    padding: 1.5vh 1.6vh;
    text-align: center;
    text-decoration: none;
    font-size: 1.2vw;
    font-family: Arial;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1vw;
    opacity: 0.8;
}

a::after {
    content: '';
    display: block;
    width: 0;
    height: 0.6vh;
    background: white;
    transition: width .3s;
}


a:hover::after {
    width: 100%;
    transition: width .3s;
}

.navbar a:hover {
    opacity: 1;
}

.active a {
    color: azure;
    opacity: 1;
    z-index:inherit;
}

.active a:hover {
    color: white;
}

.active a::after {
    content: '';
    display: block;
    width: 100%;
    height: 0.6vh;
    background: white;
    transition: width .3s;
}


@media only screen and (min-width: 769px) {

#cornerBox {
    position:fixed;
    top:100%;
    left:100%;
    transform: translate(-15vw, -15vw) rotate(55deg);
    height:50vw;
    width:50vw;
    background-color:azure;
    opacity:0.7;
    z-index:5;
}

#cornerBox2 {
    position:fixed;
    top:0;
    left:0;
    transform: translate(-35vw, -35vw) rotate(55deg);
    height:50vw;
    width:50vw;
    background-color:azure;
    opacity:0.7;
    z-index:5;
}
    
}
    
#sloganWrapper {
    position:fixed;
    top:55%;
    left:50%;
    transform: translate(-50%, -50%);
    width:80%;
    height:60%;
    z-index:0;
}

/*#sloganWrapper::after {
    content: '';
    display: block;
    position:absolute;
    top: -15%;
    left: -8%;
    height:130%;
    width:116%;
    background: rgba(0,0,0,.6);
    border: 0.1vw solid white;
    outline: 20vw solid black;
    opacity:0.2;
    z-index:-3;
}*/

h1 {
    text-align: center;
    line-height:5.8vw;
    color:white;
    font-size: 6vw;
    font-family: Arial;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1vw;
}

#schlick {
    color: darkorange;
    font-family:Garamond;
    font-weight:200;
}

#infoButton {
    padding:1vw;
    padding-left:2vw;
    padding-right:2vw;
    position:relative;
    top:3%;
    left:50%;
    transform: translate(-50%, -50%);
    height:2vw;
    width:50%;
    text-align: center;
    line-height:2vw;
    color:white;
    font-size: 2vw;
    font-family: Arial;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1vw;
    z-index: 1; 
    background-color: rgba(100, 19, 0, 1);
    border-radius:4vh;
    
    -moz-transition:background-color 1s ease,
                    width 0.5s ease;
    -webkit-transition:background-color 1s ease,
                    width 0.5s ease;
    transition:background-color 1s ease,
                    width 0.5s ease;
}

#infoButton a {
    text-decoration: none;
    text-align: center;
    line-height:2vw;
    color:white;
    font-size: 2vw;
    font-family: Arial;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1vw;
}

#infoButton:hover{
    cursor:pointer;
    width:60%;
    background-color: rgba(100, 19, 0, 0);
    color: darkorange;

    -moz-transition:background-color 1s ease,
                    width 1s ease,
                    color 0.5s ease;
    -webkit-transition:background-color 1s ease,
                    width 1s ease,
                    color 0.5s ease;
    transition:background-color 1s ease,
                    width 1s ease,
                    color 0.5s ease;
}


@media only screen and (max-width: 960px) {
    .navbar a {
        font-size:13px;
    }
    
    #infoButton {
        height: 4vw;
        width: 85%;
    }
    
    #infoButton a {
        font-size: 4vw;
        line-height: 4vw;
    }
}

@media only screen and (max-width: 768px) {
    .impressumDatenschutz {
        font-size:8px;
        line-height:8px;
    }
    .hideText {
        display: none;
    }
    h1 {
        font-size:8vw;
        line-height:7.5vw;
    }
	.navbar {
		height: initial;
	}
}

@media only screen and (max-width: 680px) {
    
}