body{
	padding: 20px;
	background-color: #e6e7ed;

}

.header{
	background-color: #fed136;
	padding: 40px;
	text-align: center;
}
.card{
	margin-top: 20px;
}
.card-header{
	background-color: #fed13699;
	transition: 0.2s;
}
.card:hover .card-header{
	background-color: #fed136;
	transition: 0.2s;
}
.img{
	background-color: #aaa;
	padding: 20px;
	background-size: cover;
	background-position: center;
}
a{
	text-decoration: none !important;
	color: black;
}
i{
	font-size: 30px !important;
	padding-right: 15px;
}
.footer{
	background-color: #fed136;
	text-align: center;
}
.modalDialog{
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.8);
	display: none; 
}
.modalDialog:target{
	display: block;
}
.modalDialog > div{
	width: 400px;
	position: relative;
	margin: 10% auto;
	padding: 5px 20px 13px 20px;
	border-radius: 10px;
	background: #f3f3f3; 
}
.close{
	background: #606061;
	color: #ffffff;
	line-height: 25px;
	position: absolute;
	right: -12px;
	text-align: center;
	top: -10px;
	width: 24px;
	text-decoration: none;
	font-weight: bold;
	border-radius: 12px;
	box-shadow: 1px 1px 3px #000;  

}
.close:hover{
	background: #fed138; 
}
label{
	position: absolute;
	width: 45px;
	height: 26px;
	right: 20px;
	top: 20px;
	border:2px solid;
	border-radius: 20px;
	
}
label:before{
	position: absolute;
	content: "";
	width: 20px;
	height: 20px;
	left: 1px;
	top: 1px;
	border-radius: 50%;
	cursor: pointer;
	background: black;
	transition: 0.4s;
}

label.active:before{
  left:21px;
  background: rgba(255, 255, 255, 0.8);
  color: black;
}

body.night{
    background: #20222c;
    color: #fff;
}

.theme{
  background: #4d3b00;
  border: none !important;
 }

.card.theme:hover .card-header {
    background-color:  #997500;
}
