body{
  font-family: Arial, Helvetica, sans-serif;
}
#logo {
	width:20%;
	margin-bottom:50px;
	margin-top:15px;
}
#logo2 {
	width:20%;
	margin-bottom:50px;
	margin-top:15px;
	background:black;
	border-radius:5px;
	float:right;
}
a{
	color:white;
	text-decoration:none;
}
a:hover,a:active,a:visited,a:link{
	color:white;
	text-decoration:none;
}		
.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
input[type="checkbox"] {
  position: absolute;
  top: 10px; 
  left:100px;
  z-index: 1;
  width: 20px;
  height: 20px; 
  display: flex;
  justify-content: center;
  align-items: center;
}

#label2 {
  position: absolute;
  top: 10px; 
  left: 10px;
  z-index: 0;
  width: 20px;
  height: 20px;
}

#label2 ::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  width: 10px;
  height: 10px;
  border: 2px solid #000;
  border-radius: 3px;
  display: none;
}

input[type="checkbox"]:checked + #label2 ::after {
  display: block;
}
.row{
	margin:25px;
}
@media only screen and (max-width:750px) {
	.image-container{
		padding:15px;
	}
	input[type="checkbox"] {
		position: absolute;
		top: 20px;
		left: 110px;
		z-index: 1;
		width: 20px;
		height: 20px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
}