body{ font: 14px sans-serif; }
    
.wrapper{ align: center; width: 360px; padding: 20px; }

@font-face {
  font-family: Devine;
  src: url(/images/DevinneSwashShadow.ttf);
}
    
.pg_title {
  text-align: center; 
  color: gold;
  font-family: Devine;
  font-weight: bold;
  font-size: 36px; 
  background-color: #114611;}
     
.notification {
  text-align: center;
  color: white;
}

.terms {
  padding: 10px;
  font-size: smaller;
  background-color: #ffcc99;
  text-align: justify;
}

.mypolicy {
  max-width: 100%;
  height: auto;
  padding: 10px;
  color: #DDDDDD;
  background-color: #ffcc99;
  border: 2px solid black;
  text-align: justify;
}

.responsive {
  max-width: 100%;
  height: auto;
  text-align: center;}

.scroll-text {
  color: white;
  padding: 15px;
  height: 350px;
  overflow: scroll;
  border: 1px solid black;
}

a:link, a:visited {
  color: white;
  background-color: #0E380E; 
  border: 2px solid black;
  padding:10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  margin: 8px 4px;
  cursor: pointer;
  border-radius: 12px;  
}

a:hover, a:active {
  background-color: #00e600; 
  color: black;
  border: 2px solid black;
  padding:10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  margin: 8px 4px;
  cursor: pointer;
  border-radius: 12px;
}
      
.foot {
  border: 1px solid black;
  color: gold;
  padding: 10px;
  background-color: #114611; 
  text-align: right;
  font-size: 1.0em;
}
    
.container {
  display: grid;
  grid-template-areas:
    "top-left-logo header top-right-head"
    "nav nav nav"
    "menu content side1"
    "side2 content side3"
    "side4 content-bottom side3"
    "footer footer footer";
  grid-template-columns: 1.5fr 4.5fr 2fr;
  gap: 3px;
  background-color: #0E380E;
  padding: 5px;
}
.container div {
  background-color: #114611;
  padding: 10px;
}
.container div.top-left-logo {
  grid-area: top-left-logo;
  vertical-align: center;
  text-align: center;
  color: gold;
  background-color: #114611; 
}    
.container div.top-right-head {
  grid-area: top-right-head;
  vertical-align: center;
  text-align: center;
  color: gold;
  background-color: #114611; 
}  
.container div.header {
  grid-area: header;
  text-align: center;
  color: gold;
  background-color: #114611; 
}
.container div.nav {
  max-height: 200px;
  grid-area: nav;
  color: gold;
  text-align: center; 
}
.container div.menu {
  grid-area: menu;
}
.container div.content {
  grid-area: content;
  color: gold
}
.container div.side1 {
  grid-area: side1;
  text-align: justify;
  color: #DDDDDD;
}
.container div.side2 {
  grid-area: side2;
  text-align: justify;
  color: #DDDDFF;
}
.container div.side3 {
  grid-area: side3;
  color: #DDDDDD;
}
.container div.footer {
  grid-area: footer;
  text-align: center;  
}
.container div.side4 {
  grid-area: side4;
  text-align: justify;
  color: #DDDDFF;
}
.container div.content-bottom {
  grid-area: content-bottom;
  color: #DDDDDD;
}
.container div.side3 {
  grid-area: side3;
  color: #DDDDDD;
}