#model {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

.row {
  display: flex;
  flex-direction: row;
  align-items: bottom;
  /* justify-content: space-around; */
  justify-content: left;
}

.page {
  width: 20px;
  /* margin: 15em; */
}

.title {
  height: 20px;
  width: 100%;
}

.titleText {
  font-family: 'Epilogue', sans-serif;
  font-size: 5em;
  color: white;
  padding: 1em;
  /* text-shadow: 4px 4px grey; */
}

.content {
  width: 100%;
}

.section {
  width: 300px;
  height: 300px;
  background-color: rgba(0, 0, 0, 0.5);
  margin-top: 0px;
    /* box-shadow: 4px 4px black; */
}

.sectionText {
  font-family: 'Epilogue', sans-serif;
  color: white;
  margin: 1.5em 0.5em;
}

canvas {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  outline: none;
}

body {
  
  background: url("./resources/background.jpg") no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
 
}
