@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/manrope-v11-latin-600.eot');
  src: local(''),
       url('fonts/manrope-v11-latin-600.eot?#iefix') format('embedded-opentype'),
       url('fonts/manrope-v11-latin-600.woff2') format('woff2'),
       url('fonts/manrope-v11-latin-600.woff') format('woff'),
       url('fonts/manrope-v11-latin-600.ttf') format('truetype'),
       url('fonts/manrope-v11-latin-600.svg#Manrope') format('svg');
}
@font-face {
  font-family: 'Manrope';
  font-style: bold;
  font-weight: 800;
  src: url('fonts/manrope-v11-latin-800.eot');
  src: local(''),
       url('fonts/manrope-v11-latin-800.eot?#iefix') format('embedded-opentype'),
       url('fonts/manrope-v11-latin-800.woff2') format('woff2'),
       url('fonts/manrope-v11-latin-800.woff') format('woff'),
       url('fonts/manrope-v11-latin-800.ttf') format('truetype'),
       url('fonts/manrope-v11-latin-800.svg#Manrope') format('svg');
}
@font-face {
  font-family: 'koebler';
  src:  url('fonts/koebler.eot?ayzcuv');
  src:  url('fonts/koebler.eot?ayzcuv#iefix') format('embedded-opentype'),
    url('fonts/koebler.ttf?ayzcuv') format('truetype'),
    url('fonts/koebler.woff?ayzcuv') format('woff'),
    url('fonts/koebler.svg?ayzcuv#koebler') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="ok-"]:before, 
[class*=" ok-"]:before {
  font-family: 'koebler' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*:focus{
	outline: none;
	border: 0;
}

:root{
	--shadow-color: #245578;
}
HTML{
    text-rendering: geometricPrecision;
    scroll-behavior: smooth;
}

body{
	font-family: 'Manrope', sans-serif;
	font-weight: 800;
	padding: 0;
	margin: 0;	
	background-color: #0D0D0D;
	color: #333;
	overflow-x: hidden;
}

p, input, a{
	font-weight: 600;
	font-size: 1.2rem;
	line-height: 1.55;
	text-decoration: none;
	color: inherit;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	margin: 2em 0;
}

button {
    user-select: none;
    border: 0;
    padding: 1em 1.5em;
    font: inherit;
    border-radius: 0;
}

a:active{
	color: #7F3F4A;
}


@media (hover: hover) {
	a:hover{
		color: #7F3F4A;
	}
}

.noselect {
  -webkit-touch-callout: none;
    -webkit-user-select: none;
            user-select: none;
}

.notransition{
		-webkit-transition: unset !important;
		transition: unset !important;
}

section{
	position: relative;
	padding: 4rem;
	margin: 0;
}

#hero{
	height: 99vh;
	width: 100%;
	box-sizing: border-box;
	-webkit-transition: background-color 3s ease;
	transition: background-color 3s ease;
	border:0;
	will-change: background-color;
	overflow: hidden;
}


#hero:before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-image: url("assets/ok.svg"); 
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	pointer-events: none;
	z-index: 0;
	/*opacity: .5;*/
	backface-visibility: hidden;
	opacity: 0;
	animation: fadeIn 3s 1.5s ease forwards;
	transform: translate3d(0px, 0px, 0px);
} 

#hero>*:not(#wrapper) {
    opacity: 0;
    animation: fadeIn 2s 1s ease forwards;
}

.name{
	text-transform: uppercase;
	position: absolute;
	letter-spacing: .025em;
	margin: 0;
	font-size: 1.5em;
    font-weight: bold;
}
.name:hover{
	color: inherit;
}
.name:before{
		content: 'Oliver ';
	}

.disciplines{
	position: absolute;
	right: 4rem;
	text-align: right;
	letter-spacing: .025em;
	margin: 0;
}

.time{
	position: absolute;
	bottom: 2.5rem;
	display: flex;
	align-content: center;
}
.time>*{
	display: inline;
	font-weight: 600;
	letter-spacing: .05em;
}
.time>input{
	display: flex;
	margin: 0;
	padding: 0;
}

.verticallycentered{
	top: 50%;
	transform: translateY(-50%);
}

#colorfield{
	display: block;
	position: absolute;
	right: 0;
	height: 60px;
	width: 60px;
	border-radius: 50%;
	-webkit-transition: background-color 3s ease;
	transition: background-color 3s ease;
}

#wrapper{
    position: absolute;
	width: 380px;
    height: 380px;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    min-width: 50vw;
    min-height: 50vw;
    max-width: 100vw;
    max-height: 100vw;

    overflow: unset;
}

svg{
    position: absolute;
    top: 0;
    width: 100%;
    height: auto;
}

#light{ /*sunrays*/
    -webkit-filter: drop-shadow(0px 0px 6px #FFD383); 
    filter: drop-shadow(0px 0px 6px #FFD383); 
    transform-origin: 50% 50%;
    pointer-events: stroke;
}

#sun{
	-webkit-transition: -webkit-transform 2s ease, stroke-width .5s ease;
	transition: transform 2s ease, stroke-width .5s ease;
	transform: rotateZ(0deg);
	-webkit-transform: -webkit-rotateZ(0deg);
}

#sun{
	fill: none;
	stroke: #fff;
	stroke-width: 14;
	stroke-linecap: round;
	stroke-dasharray: .1,1000;
    transform-origin: center 100%;
    transform-origin: center 120px;
}
#sun:hover{
	stroke-width: 20 !important;	
}

#shadowCaster{
	-webkit-transition: -webkit-filter 2s ease;
	transition: filter 2s ease;
	opacity: .1; 
	text-align: center !important;
	line-height: 50vw;
	font-size: calc(1.5em + 1vw);
	border-radius: 50%;
	cursor: default;
	/*will-change: filter;*/
}

#object{
	position: absolute;
	margin: auto;
	height: 60%;
	width: 60%;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

#object *{
	position: absolute;
	height: 100%;
	width: 100%;
	padding: 0;
	top: 0;
	left: 0;
    pointer-events: visible;
}

#object:before,
#shadowCaster:before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 120px;
	max-width: 30vw;
	height: 120px;
	background-image: url("assets/logo.svg"); 
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	pointer-events: none;
	z-index: 0;
} 

input,
input#clock{
	background: none;
    border: none;
    font-family: inherit;
    text-transform: uppercase;
	font-style: inherit;
    font-weight: normal;
    cursor: default;
    color: inherit;
}
input[type="time"]::-webkit-calendar-picker-indicator {
    background: none;
}

input:focus,
input::-webkit-datetime-edit-hour-field:focus,
input::-webkit-datetime-edit-minute-field:focus,
input::-webkit-datetime-edit-second-field:focus{
	color: white; 
    background: transparent;
    border:0;
    outline: none;
    opacity: 1;
}
input::-webkit-datetime-edit-minute-field,
input::-webkit-datetime-edit-minute-field[disabled]{
	z-index: 0;
    pointer-events: visible;
}
input::-webkit-datetime-edit-hour-field,
input::-webkit-datetime-edit-hour-field[disabled]{
	z-index: 1; 
    pointer-events: visible;
}

::selection,
select {
    color: white; 
    background: black;
}

.m0-30 *::selection,.e0-30 *::selection,
.m0-00 *::selection,.e0-00 *::selection,
.n *::selection,
.n select {
    color: black; 
    background: rgba(241, 240, 228, 0.9) !important;
}

.noon0-30>section{ background-color: #FFF; color: #02090C; }
.noon0-30 .illuminated{ background-color: #E6EDE1; color: #02090C; }

/*.noon0-00 .illuminated{ background-color: #F2F9F7; color:#02090C; }*/
.noon0-00>section{ background-color: #FFF; color: #02090C; }
.noon0-00 .illuminated{ background-color: #E6F9F5; color: #02090C; }

.d>section{ background-color: #FFF; color: #02090C; }
.d .illuminated{ background-color: #E7E6D2; color: #02090C; }

.m3-00>section,.e3-00>section{ background-color: #FFF; color: #02090C; }
.m3-00 .illuminated,.e3-00 .illuminated{ background-color: #E7E6D2; color: #02090C; }
.m2-30>section,.e2-30>section{ background-color: #FFF; color: #02090C; }
.m2-30 .illuminated,.e2-00 .illuminated{ background-color: #E3D5B7; color: #02090C; }
.m2-00>section,.e2-00>section{ background-color: #FFF; color: #02090C; }
.m2-00 .illuminated,.e2-30 .illuminated{ background-color: #E3D5B7; color: #02090C; }
.m1-30>section,.e1-30>section{ background-color: #FFF; color: #02090C; }
.m1-30 .illuminated,.e1-00 .illuminated{ background-color: #D17F77; color: #02090C; }
.m1-00>section,.e1-00>section{ background-color: #FFF; color: #02090C; }
.m1-00 .illuminated,.e1-30 .illuminated{ background-color: #D17F77; color: #02090C; }
.m0-30>section,.e0-30>section{ background-color: #02090C; color: #E7E6D2; }
.m0-30 .illuminated,.e0-00 .illuminated{ background-color: #C04747; color: #02090C; }
.m0-00>section,.e0-00>section{ background-color: #02090C; color: #E7E6D2; }
.m0-00 .illuminated,.e0-30 .illuminated{ background-color: #7F3F4A; color: #E7E6D2; }
/*.m0-00>section,.e0-00>section{ background-color: #FFF; color: #FFF; }*/
/*.m0-00 .illuminated,.e0-00 .illuminated{ background-color: #4A3345; color: #E7E6D2; }*/

.n>section{ background-color: #02090C; color: #E7E6D2; }
.n .illuminated{ background-color: #001836; color: #E7E6D2; }


.n #object:before, 
.n #hero:before, 
.n .logo{ filter: invert(1); }
.n #sun{ stroke: transparent; }
.n #sunPath,
.e0-30 #sunPath{ stroke: #FFF; }

.shape {

    background-color: rgb(22, 160, 133);
    height: 150px;
    width: 150px;
    font-size: 75px;
    line-height: 150px;
    text-align: center;
}

@keyframes fadeIn{
	0%   { opacity: 0;}
	100% { opacity: 1; }
}
@keyframes fadeOut{
	0%	 { opacity: 1;}
	100% { opacity: 0;}
}



