@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,600,700&display=swap');
* {
	box-sizing: border-box;
	font-family: Source Sans Pro, Arial, 
	Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}
html {
	position: relative;
	min-height: 100vh;
    background-color: black;
}
body {
	font-size: 16px;
	line-height: 1.4;
	background-color: #fff;
	color:#333;
	padding: 0;
	margin: 0;
}
.wrapper {
	width: 1140px;
    margin: 0 auto;
    padding: 40px 0 40px 0;
}
button {
    z-index: 1000;
    color: white;
}

/* Preloader */
.preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: 1s;
	z-index: 100;
	display: block;
    background: white;
}
.preloader.complete {
	visibility: hidden;
	pointer-events: none;
    margin-top: -100%;
}
.gooey {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 142px;
    height: 40px;
    margin: -20px 0 0 -71px;
    background: white;
    filter: contrast(20);
}
.dot {
    position: absolute;
    width: 16px;
    height: 16px;
    top: 12px;
    left: 15px;
    filter: blur(4px);
    background: #000;
    border-radius: 50%;
    transform: translateX(0);
    animation: dot 2.8s infinite;
}
.dots {
    transform: translateX(0);
    margin-top: 12px;
    margin-left: 31px;
    animation: dots 2.8s infinite;
}
.dots span {
    display: block;
    float: left;
    width: 16px;
    height: 16px;
    margin-left: 16px;
    filter: blur(4px);
    background: #000;
    border-radius: 50%;
}
@keyframes dot {
    50% {
        transform: translateX(96px);
    }
}
@keyframes dots {
    50% {
        transform: translateX(-31px);
    }
}

/*--------------------*/
/* ----- header ----- */
/*--------------------*/
header {
    height: 100px;
    width: 100%;
    background-color: black;
    top: 0;
}
.Suchen {
    position: absolute;
    top: 30px;
    right: 200px;
}
header label {
    position: fixed;
    top: 23px;
    left: 100px;
    cursor: pointer;
	background-color: black;
	border-radius: 55px;
	padding: 14px;
    z-index: 105;
}
header label img {
	width: 35px;
}
#toggle {
    display: none;
}
#toggle:checked + nav {
    transform: none;
}
.pagetitle {
    position: absolute;
    color: white;
    left: 180px;
    top: 30px;
    font-size: 32px;
    font-weight: 700;
}

/* --- Header Navigation --- */
header nav {
    position: fixed;
    text-align: center;
    background-color: white;
    width: 100%;
    height: 100vh;
    transform-origin: 0% 0%;
    transform: translate(0, -100vh);
    transition: transform 0.5s;
    overflow: hidden;
    z-index: 100;
}
header nav ul {
    list-style-type: none;
	margin-top: calc(50vh - 146px);
    width: 200px;
    margin-left: calc(50% - 100px);
}
header nav ul li a {
    color: black;
    font-weight: 300;
    font-size: 38px;
    max-width: 300px;
}
header nav ul li a:hover {
    color: #7AFFA1;
}

/* --- Subnavigation --- */
.Subnav {
    margin: 0;
    margin-top: -72px;
    padding: 20px;
    position: absolute;
    display: none;
    right: 30%;
    background-color: black;
    border-radius: 10px;
    text-align: left;
    font-weight: 300;
    width: 200px;
}
.Subnav li a {
    color: white;
    font-size: 38px;
}

/*------------------*/
/* ----- Main ----- */
/*------------------*/
main {
    display: block;
}
.content {
    width: 100%;
    min-height: calc(100vh - 100px);
    background-color: white;
    /* overflow: hidden; */
}

/* --- home --- */
#h-music {
    background-color: white;
}

/* --- Projects ---*/
#projects iframe {
    width: 100%;
    height: 34vw;
    margin-top: 15px;
}
#p-text {
    width: 60%;
}

/* --- Beats --- */
#beats form select {
    margin-bottom: 10px;
}
#beats .button {
    width: auto;
}
.green .track-box {
    background-color: white;
}
.white .track-box {
    background-color: #7AFFA1;
}
.track-box {
    border-radius: 10px;
    text-align: center;
    position: relative;
    z-index: 10;
}
.track-box p {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    background: white;
    padding: 10px 0;
    border-radius: 10px;
    z-index: 5;
}
#moods p {
    margin-bottom: 10px;
    width: 50%;
}
#moods .m-content p {
    width: 100%;
}
#moods .box-3s:hover .box .icon {
	top: 20px;
	left: calc(50% - 35%);
	width: 70%;
	height: 70%;
}
#moods .box-3s:hover .box img {
    border-radius: 50%;
}
#moods .box-3s:hover .box .m-content {
	top: 79%;
}
#moods .box-3s:hover {
    cursor: pointer;
}


/* --- About me --- */
#Portrait {
    border-radius: 50%;
    width: 350px;
    border: 13px #7AFFA1 solid;
}

/* --- Contact --- */
#contact iframe {
    width: 100%;
    height: 300px;
}


/* --- Impressum --- */
#impressum {
    background-color: white;
}



/*--------------------*/
/* ----- Footer ----- */
/*--------------------*/
footer {
    position: relative;
    width: 100%;
    height: 100px;
    background-color: black;
    color: white;
    text-align: center;
    z-index: 10;
}
footer a {
    color: white;
    text-decoration: underline;
}

/*  SECTIONS  */
.section {
	clear: both;
	padding: 0px;
	margin: 0px;
}
/*  COLUMN SETUP  */
.col {
	display: block;
	float:left;
	margin: 1% 0 1% 1.5%;
}
.col:first-child { margin-left: 0; }
/*  GROUPING  */
.group:before,
.group:after { content:""; display:table; }
.group:after { clear:both;}
.group { zoom:1; /* For IE 6/7 */ }
/*  GRID OF THREE  */
.span_3_of_3 { width: 100%; }
.span_2_of_3 { width: 66.16%; }
.span_1_of_3 { width: 32.33%; }


/*-------------------*/
/* ----- Stuff ----- */
/*-------------------*/

/* --- .Header --- */
iframe {
    border: 0;
}
.header {
    overflow: hidden;
    height: 45vh;
    position: relative;
    background-color: #7AFFA1;
}
#home .header {
    height: 49vh;
}
.header img {
    width: 100%;
    margin-top: -20vw;
    min-height: calc(49vh + 20vw);
    object-fit: cover;
}
a {
    text-decoration: none;
}
.clear {
    clear: both;
}
.button {
    background-color: black;
    color: white;
    width: 70px;
    text-align: center;
    padding: 5px;
    border-radius: 8px;
    margin-top: 20px;
    font-weight: 600;
    cursor: pointer;
}
.button:hover a {
    color: #7AFFA1;
}
.button a {
    color: white;
}
.center {
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
input[type="submit"] { 
    border: none;
    width: auto;
}
input[type="submit"]:hover {
    color: #7AFFA1;
}
input[type="radio"] { 
    margin-right: 10px;
}
input[type="checkbox"] { 
    margin-right: 10px;
}
input {
    padding: 4px;
    font-size: 16px;
    margin-bottom: 10px;
}
select {
    font-size: 16px;
    padding: 4px;
    margin-bottom: 10px;
}
textarea {
    padding: 4px;
    max-width: 100%;
    min-width: 60%;
    min-height: 50px;
    height: 80px;
    font-size: 16px;
}
.white {
    background-color: white;
}
.green {
    background-color: #7AFFA1;
}

/* --- hovers --- */
.box {
	position: relative;
	width: 100%;
	height: 355px;
	box-sizing: border-box;
	overflow: hidden;
	border-radius: 100%;
    cursor: pointer;
}
.box .icon {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: 0.5s;
	z-index: 1;
}
.box:hover .icon {
	top: 20px;
	left: calc(50% - 35%);
	width: 70%;
	height: 70%;
}
.box .icon img {
	position: absolute;
    width: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	transition: 0.5s;
}
.box:hover img {
    border-radius: 50%;
}
.box .m-content {
	position: absolute;
	top: 100%;;
	height: 100%;
	width: 100%;
	text-align: center;
	padding: 20px;
	box-sizing: border-box;
	transition: 0.5s;
    background-color: transparent;
}
.box:hover .box .m-content {
	top: 79%;
}
.green .box, .green .box .icon {
    background-color: #7AFFA1;
}
.white .box, .white .box .icon {
    background-color: white;
}



/* Text */
h1 {
    font-size: 30px;
    color: black;
    font-weight: 600;
    margin-bottom: 10px;
}
p {
    font-weight: 300;
}
.italic {
    font-style: italic;
    font-weight: 300;
    z-index: 5;
    position: absolute;
    top: 14vh;
    width: 50%;
    color: #7AFFA1;
}
.nav-font {
    color: black;
    font-weight: 300;
    font-size: 38px;
    cursor: pointer;
}
.nav-font:hover {
    color: #7AFFA1;
}
.nav-font-bold {
    font-weight: 600;
}
strong {
    color: #7AFFA1;
    font-weight: 600;
    font-style: italic;
}
.green strong {
    color: black;
}


/* Scrollbar */
::-webkit-scrollbar {
    background-color: black;
}
::-webkit-scrollbar-thumb {
    background-color: white;
}

/* --- Boxes --- */
.box-3s {
    width: calc(33% - 15px);
    float: left;
    margin: 0 15px 20px 0;
}
.box-2s {
    width: calc(50% - 15px);
    float: left;
    margin: 0 15px 20px 0;
}
.box-2s p {
    width: 80%;
}

.box-1s {
    
}
.box-1s p {
    width: 50%;
}


/* Responsive */
@media screen and (max-width: 1380px) {
    nav .Subnav {
		right: 21%;
	}
    .wrapper {
        width: 90%;
    }
    header label {
		left: calc(100vw - 96%);
	}
    .pagetitle {
        left: 120px;
    }
    .box {
        height: 27vw;
    }
}

@media screen and (max-width: 1000px) {
    nav .Subnav {
		right: 13%;
	}
    .italic {
        width: 80%;
    }
    #projects iframe {
        height: 66vw;
    }
}

@media screen and (max-width: 768px) {
    nav .Subnav {
		margin-top: 170px;
        right: calc(50% - 100px);
        text-align: center;
	}
    header nav ul {
        margin-top: calc(50vh - 246px);
    }
    p {
        font-size: 20px;
    }
    .box-2s {
        float: none;
        width: 100%;
    }
    .box-2s p {
        width: 100%;
    }
    .box-3s {
        float: none;
        width: 100%;
        padding-bottom: 20px;
    }
    .box {
        width: 50%;
        height: 44vw;
    }
    .box:hover .icon {
        top: 39px;
        left: calc(50% - 20%);
        width: 40%;
        height: 50%;
    }
    .box:hover .content {
        top: 73%;
    }
    #moods p {
        width: 100%;
    }
    .italic {
        top: 10vh;
    }
    #p-text {
    width: 100%;
}
}

@media only screen and (max-width: 480px) {
	.col {  
        margin: 1% 0 1% 0%; 
    }
	.span_3_of_3, .span_2_of_3, .span_1_of_3 { 
        width: 100%; 
    }
    .wrapper {
        text-align: center;
    }
    .button {
        margin: 20px auto;
    }
    .box {
        width: 75%;
        height: 66vw;
        margin: 0 auto;
    }
    #Portrait {
        width: 100%;
    }
    .italic {
        width: 90%;
        top: 4vh;
    }
}

@media screen and (max-width: 320px) {
	
}



