body {
   background-color: white;
   background-repeat: repeat;
   background-position: center;
   font-size: 36px;
   font-family: monospace;
   width: 100vw;
   overflow-y: overlay;
   overflow-x: hidden;
}
.black {
   background-color: black;
}
.angel {
    background-image: url("../../img/gif/angel.gif");
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
header {
    text-align: center;
    padding: 0%;
}
a {
	color: #991111;
    text-decoration: none;
    padding: 0%;
}
a:hover {
    opacity: 0.9;
}

/*flex-box stuff here*/

.row {
	text-align: left;
	align-items: center;
    display: flex;
    flex-wrap: wrap;
	width: 60%;
	margin: auto;
	justify-content: space-around;
}
.main {
  flex: 100%;
  background-color: white;
  padding: 20px;
  height: 100%;
}
.blackness {
  flex: 100%;
  background-color: black;
  color: #991111;
  padding: 20px;
  height: 100%;
}