@font-face { 
  font-family: Inconsolata; 
  src: url('/fonts/Inconsolata-Regular.ttf'); 
} 

@font-face { 
  font-family: Inconsolata; 
  src: url('/fonts/Inconsolata-Bold.ttf'); 
  font-weight: bold;
}

body {
  color: white;
  font-family: 'Inconsolata';
  background-color: #261d36;
  background-image: url("Pattern.jpg");
  margin: 0;
}

h1 {
  text-align: center;
}

h2 {
  text-align: center;
  font-weight: normal;
  margin-top: 100px;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.translucentBackground {
  background-color: rgba(0, 0, 0, 0.5);
}

html, body {
  overflow-x: hidden;
}

#curtain-left, #curtain-right {
  position: absolute;
  top: 0;
  width: 50%;
  height: auto;
}

#curtain-left {
  left: 0;
}

#curtain-right {
  right: 0;
}