@charset "utf-8";

@import url('https://fonts.googleapis.com/css?family=UnifrakturMaguntia');


.background-red {
	background-color: #dc3545
}

.font-fraktur {
	font-family: 'UnifrakturMaguntia', cursive;
}

#overlay {
    position: fixed; /* Sit on top of the page content */
    display: none; /* Hidden by default */
    width: 70%; /* Full width (cover the whole page) */
    height: 70%; /* Full height (cover the whole page) */
    top: 50%; 
    left: 50%;
    right: 0;
    bottom: 0;
	transform: translate(-50%, -50%);
    background-color: rgba(162,26,28,0.90); /* Black background with opacity */
    z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer; /* Add a pointer on hover */
}

.overlay-guts {
  /* cover the modal */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  /* spacing as needed */
  padding: 20px 50px 20px 20px;

  /* let it scroll */
  overflow: auto;
}

