html { 
  background-image: url(https://projects.codecraftworks.com/web/cYSgfO5QyeqNiAZVcNCx/assets/mohammad-rahmani-oXlXu2qukGE-unsplash.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #50A981;
  height: 100%;
}

#page {
  font-family: 'Raleway', sans-serif;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(80, 169, 129, 0.2);
  z-index: 10;
  text-shadow: 4px 2px 2px black;
}

#content div {
  position: relative;
  z-index: 1;
  padding: 4vh;
  margin: 4vh;
  text-align: center;
  color: white;
  box-shadow: 4px 2px 2px black;
  border-radius: 15px;
}

#title::before, #body::before {
  content: "";
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;  
  opacity: .8; 
  z-index: -1;
  background-image: radial-gradient(#c1c274, #566ea4, #5a67fa);
  background-color: #566ea4;
  border-radius: 15px;
}

#content p {
  margin: 4vh;
}

#footer {
	height: 150px;
  color: white;
  padding-top: 0px;
  padding-left: 4vh;
}

.to:link {
  color: white;
}

.to:visited {
  color: #beedca;
}

.to:hover {
  text-decoration: underline wavy;
}