:root {
	--theme_color: 50,150,150;
	--theme_header_color: 50,150,150;
}

* {
  box-sizing: border-box;
  overflow-wrap: break-word;
  margin: 0;
  padding: 0;
  font-family: Lato, sans-serif;
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
}
body.overflow_hidden {
	overflow: hidden;
}

pre {
  white-space: pre-wrap;
  text-align: left;
}

ul {
	margin-left: 25px;
}

input[type=text]{
	font-size: 1em;
	padding: 10px;
	border: none;
    background-color: transparent;
}
input[type=text]:focus-visible{
	outline: none;
}

input[type=password],
input[type=number],
input[type=tel],
textarea,
select {
	font-size: 1em;
  padding: 2px 3px;
  margin: 2px;
  border: 2px solid green;
  outline: 1px solid white;
  border-radius: 5px;
}

#index .header_name {
	font-size: 2em;
}

.body_grid {
	display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
	flex: 1;
	text-align: left;
}





.content {
	padding: 20px;
}
h1{
	text-align: center;
  font-size: 3em;
  padding-top: 30px;
}
h2{
  font-size: 2em;
  padding-top: 30px;
}










/*Extra small devices (portrait phones, less than 576px)
No media query since this is the default in Bootstrap*/

/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
	
}

/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
  body {
    font-size: 18px;
  }
}

/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
  body {
    font-size: 18px;
/*     width: 60%; */
  }
  body.overflow_hidden {
  	overflow: auto;
  }
  #index .header_name {
	font-size: 1em;
  }
  .content {
  	width: 70%;
  	margin: auto;
  }
}

/*Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
  
}

/*XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) { 
  
}

/* CSS Code wenn Dark Mode aktiv */ 
@media (prefers-color-scheme: dark) {
  /*:root {
  	color: white;
  	background-color: black;
  }
  .control-container {
  	background-color: black;
  }
  .company-time {
      background-color: grey;
  }
  .company-description {
      background-color: grey;
  }
  .menu-day {
      background-color: grey;
  }
  .card-type {
      background-color: grey;
  }*/
  
}

@media print {

}