/* General */

* {
  box-sizing: border-box;
}

/* Fontydonty */

@font-face {
  font-family: Montserrat;
  src: url(../webfonts/Montserrat-Regular.ttf);
  font-weight: regular;
}

@font-face {
  font-family: Montserrat;
  src: url(../webfonts/Montserrat-Medium.ttf);
  font-weight: bold;
}

body {
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	color: #fcfcfc;
}

h1,h2,h3,h4 {
	font-family: 'Montserrat', sans-serif;
	font-weight: bold;
}

a {
	text-decoration: none;
	transition: 0.3s;
}

/* Mainstuff */

.wrapper {
	max-width: 80%;
	margin: auto;
}

.fullscreen {
	background-color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	min-width: 100vw;
	background-color: #000;
}

.wettericon {
    /* background-color: #fff; */
    width: 200px;
	height: 200px;
    text-align: center;
    border-radius: 100px;
    /* padding: 20px; */
	margin: 0 auto 0px auto;
}

.main {
    padding: 0 0px 170px 0px; /* Nur hier weil das Wetter Icon mit padding geliefert wird */
	float: left;
}

.maintext {
	text-align: center;
	font-size: 170%;
}

.maintext h1 {
	font-size: 500%;
	margin: 0;
}

#forecastwrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}

.wetter {
    text-align: center;
	margin: 40px;
}

.menu {
	position: fixed;
	bottom: 5px;
	right: 7px;
	font-size: 30px;
}

.menuitem {
    float: right;
	margin-left: 20px;
}

.fullscreentoggler {
	color: #4A4A4A;
}

.overlay {
	position: absolute;
	top: 0px;
	left: 0px;
}

.overlaytogglerback {
	position: fixed;
	padding: 20px 25px 20px 25px;
	top: 0px;
	left: 0px;
	font-size: 6em;
}

table {
    text-align: center;
	width: 100%;
	border-collapse: collapse;
	margin-top: 40px;
}

.forecasttable th {
    border-bottom: dotted 1px;
	font-size: 12px;
}

.forecasttable .trtemps {
    font-size: 19px;
    vertical-align: bottom;
    height: 38px;
}

.forecasttable .trtemps td {
	padding: 0 20px;
}

.forecasttable .trdescr {
    font-size: 11px;
}

.eieruhrmain{
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 0px 170px 0px;
}

.eieruhrmenu {
	font-size: 2em;
	float: left;
	margin: 0 50px 0 0;
}

.eieruhrbutton {
	font-size: 3em;
	margin: 15px 25px;
}

input[type=text] {
	padding: 0px;
	margin: 8px 10px;
	width: 200px;
	background-color: #000;
	color: #fcfcfc;
	border: none;
}

.eieruhrtimer {
	float: left;
	width: 600px;
	margin: 0 0 0 50px;
}

.eieruhrtimertext {
	font-size: 10em;
}

.eieruhrtimerset {
	font-size: 5em;
}


/* Responsiveness */

@media (max-width: 1280px) {
	.fullscreen {
		display: flex;
		justify-content: center;
		align-items: flex-start;
		background-color: #000;
	  }	
}