main,
header,
section,
aside,
footer {
	margin-top: 10px;
	margin-bottom: 10px;
	padding: 20px;
	border: 1px solid #fff;
	color: #ffffff;
	font-family: Sans-serif;
}

main {
	position: flex;
	background: #EFECD9;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
	overflow: hidden;
	background-color: #EFECD9;
	padding: 0 5px;
}

.header a {
	float: left;
	color: black;
	text-align: center;
	padding: 12px;
	text-decoration: none;
	font-size: 18px;
	line-height: 25px;
	border-radius: 4px;
}

.header a.logo {
	font-size: 25px;
	font-weight: bold;
}

/* Change the background color on mouse-over */
.header a:hover {
	background-color: #9F9F99;
	color: black;
}

/* Style the active/current link*/
.header a.active {
	background-color: #20201D;
	color: #DFE9E0;
}

/* Float the link section to the right */
.header-right {
	float: right;
}

.content {
	background: #20201D;
  	flex: 1;
}

.sidebar {
	background: #FFFEF6;
  	color: #000000;
  	flex: 0 1 200px;
}

.row {
    display : flex;
    align-items : center;
    margin-bottom: 15px;
}

.box {
  height: 20px;
  width: 20px;
  border: 1px solid black;
  margin-right : 5px;
}

.beige1 {
  background-color: #e1dcd0;
}

.dark1 {
  background-color: #32302f;
}

.green1 {
  background-color: #486635;
}

.red1 {
  background-color: #a43d12;
}

.footer {
	border: 1px solid #20201D;
	background: #20201D;
  	text-align: center;
}

section a:link {
	text-decoration: none;
	color: #a43d12;
}

section a:hover {
  text-decoration: underline;
}

aside a:link {
	text-decoration: none;
	color: #a43d12;
}

aside a:hover {
  text-decoration: underline;
}

aside a:visited{
	text-decoration: none;
	color: #a43d12;
}

section a:visited{
	text-decoration: none;
	color: #a43d12;
}

input[type="number"], input[type="text"] {
    display: flex;
  	padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
  	display: flex;
  	width: 50%;
  	align-items: center;
  	justify-content: center;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

label {
  	display: flex;
    display: block;
    margin-bottom: 8px;
}

.slidecontainer {
  width: 100%; /* Width of the outside container */
}

/* The slider itself */
.slider {
  -webkit-appearance: none;  /* Override default CSS styles */
  appearance: none;
  width: 100%; /* Full-width */
  height: 25px; /* Specified height */
    height: 15px;
  border-radius: 5px;  
  background: #d3d3d3; /* Grey background */
  outline: none; /* Remove outline */
  opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
  -webkit-transition: .2s; /* 0.2 seconds transition on hover */
  transition: opacity .2s;
}

/* Mouse-over effects */
.slider:hover {
  opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  height: 25px;
  border-radius: 50%; 
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: #007bff; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

.slider::-moz-range-thumb {
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: #04AA6D; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

/* Media Queries */
@media screen and (max-width: 640px) {
  .header a {
    float: none;
    display: block;
    text-align: center;
    
  }
  .header-right {
    float: none;
    margin-top: 15px;
  }
}
@media screen and (min-width: 640px){
    .flex-container {
        display: flex;
      	flex-grow: 1;
    }    
}

.wrapper {
    margin: auto;
    max-width: 70rem;
}
