
 
  @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@1,500&family=EB+Garamond&display=swap');


  body {
  background-color: black;
  font-family: 'EB Garamond', serif;
  font-size: 16px;
  color: #ffffff;
  text-align: center;
  }
  
a {
    color: #ffffff;
  }
  
.tiny {
  font-size: 9px;
  margin: 0 auto;
  text-align: center;
  }
  
/*Everything in the main box goes in this*/
.wrapper {
  width: 750px;
  border: 3px white;
  margin: 0 auto;
  top: 0px;
  }
  
.header {
  height: auto;
  width: 100%;
  border-bottom: 3px solid black;
  background: url("https://omens.pages.dev/img/pic.jpg");
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 60%;
}

 /*If you want to use a smaller title or normal text, add .header p or .header h4 or whatever to the list*/
.header h2, .header h3, .header h1 {
  font-family: 
  font-weight: bold;
  color: white;
  text-align: center;
  border: 5px white;
  margin: 18% auto; /*approx centered*/
  opacity: 0.999999;
}

.links {
  background: black;
  padding: 10px;
  border-bottom: 3px white;}
  
  .links a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 5px;
  margin-right: 5px;
  font-size: 17px;}
  a:link {
    color: #ffffff;}
  a:visited {
    color: #880808;}
  a:hover {
    color: #DAA520;}
    
h1, h2, h3 {
font-family: 'Cormorant Garamond', serif;
}

.main {
  padding: 15px;
  margin: 0 auto;
  background: #000000;
  }
  
/*Prevent overflow of large images in main text areas.*/
.main img {
  max-width: 100%;
  height: auto;
  }
  
.footer {
  background: black;
  padding: 20px;
  padding-top:5px;
  padding-bottom:5px;
  border-top: 3px solid black;
  font-size:14px;
  }
  
  
/*For narrow screens*/
@media(max-width: 790px) {
  .wrapper {
    width: 95%;
    }
  .header h1, .header h2, .header h3 { /*Vertical centering gets wonky when the box is variable width*/
    margin: 20% 5% auto;
    }
  }  

/*Mobile compatibility*/
@media(max-width: portrait) {
  .wrapper {
    width: 95%;}
  .header {
    height: 40;
    width: 64;
    
    }
  .header h1, .header h2, .header h3 {
    margin: 20% 3% auto;
    }
  }
  
 html {
    overflow: -moz-scrollbars-vertical; 
    overflow-y: scroll;
}