body {
  background-color:rgb(red,orange,yellow);
}

#title-box {
  position: fixed; 
  top: 0;
  left: 0;
  z-index: 1;
  
  width: 100%;
  height: 15vh;
  padding-top: 2vh;
  font-size: 2vh;
  font-family:  Merriweather, serif;
  text-align: center;
  background-image: url("https://projects.codecraftworks.com/web/34T4h4Bqzzt6nb6XZWM0/assets/jason-blackeye-GPPAjJicemU-unsplash.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center ;
  overflow: hidden;
}

#title-box:hover {
 color:white ; 
}

#content {
  position: absolute; 
	top: 20vh;
  margin: 0vh 5vw;
  padding-bottom: 12vh;
}

#page {
  margin: 3vw;

}

.project {
  background-image: url("");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #191970;
  margin-bottom: 5vh;
  padding: 3vh 3vw;
  padding-top: 5vw;
  text-align: center;
  max-width: 75vw;
  border-radius: 2%;
}

.project img {
 max-width: 80%;
 border-radius: 2%;
}

#content p, .project a {
  text-align: center;
 	color: white;
  font-weight: bold;
  font-family: "Arial", sans-serif;
  font-size: 3vh;
}

a:hover {
 color:; 
}

#footer {
   font-weight: bold;
  font-family: "Arial", sans-serif;
  font-size: 2vh;
  text-align: center;
}
input[type="checkbox"]
{
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  width: 1em;
  height: 1em;
  border: 1px solid #0353f0;
  vertical-align: -3px;
  color: #0363f0;
}

input[type="checkbox"]:before
{
  content: "✔";
  position: absolute;
  font-size: 1.5em;
  right: -0.2em;
  top: -0.6em;
  visibility: hidden;
}

input[type="checkbox"]:checked:before
{
  visibility: visible
} 