/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

* {
  margin: 0;
  padding: 0;
  
}

/*html{
    cursor: url(https://cur.cursors-4u.net/cursors/cur-3/cur207.png), auto;
}*/

body {
  background-color: darkgray;
  background-image: url("bg3long.png");
  color: black;
  font-family: Tahoma;
  font-size: 12pt;
}

h1 {
  color: #39ff14;
  text-align: center;
}

h3 {
  color: #39ff14;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  
}

.container{
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 2.5fr 7.5fr 2.5fr;
  min-width: 700px;
  width: 60%;
  height: 100vh;
  grid-template-areas: 
    "left-aside header right-aside"
    "left-aside main right-aside";
  grid-gap: 10px;
  padding: 20px 100px 0px 100px;
  margin: auto;
  outline: 5px solid black;
  background-color:rgba(0, 0, 0, 0.75) ;

}

.top {
  width: 500px;
  outline: 5px double white;
  background-color: black;
  background-image: url("text2.jpg");
  margin: 40px auto 40px auto;
  padding: 5px;
}

.leftside {
  grid-area: left-aside;
  border: 1px solid white;
  padding: 10px;
  background-color: black; 
  background-image: url("text2.jpg");
  color: white;

}

.rightside {
  grid-area: right-aside;
  display: block;
  gap: 5px;
  justify-content: center;
  border: 1px solid white;
  background-color: black; 
  background-image: url("text2.jpg");
  color: white;
  text-align: center;
  padding: 0px;

}

.main {
 grid-area: main;
 text-align: left;
 color: white ;
 background-color:rgba(0, 0, 0, 0.75) ;
 background-image: url("text2.jpg");
 border: 1px solid white;
 padding: 30px ; 
 
}

.a {
  border: 5px double white;
  display: block;
  margin: 20px auto 20px auto;
}

.buttons {
  max-width: 88px;
  max-height: 31px;
  margin: auto;
  transition: transform .5s;
}

.buttons:hover {
    transform: rotateX(30deg) rotateZ(1deg) scale(1.25);
}

.stamps {
    max-width: auto;
}

.bottom {
  border: 5px double white;
  background-image: url("text2.jpg");
  width: 78.5%;
  padding: 10px;
  background-color: black;
  color: white;
  margin: 20px auto auto auto;
  text-align: center;
} 

marquee {
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  font-weight: bold;
  background-color: black;
  color: lime;
  grid-area: header;
}

nav li {
  display: inline;
  text-shadow: 0px 0px 3px black, 0px 0px 3px black;
  list-style-type: none;
}



 /* display: grid;
  grid-template-rows: 80px auto 1fr auto 50px;
  grid-template-columns: 1fr 4fr 1fr;
  height: 100vh;
  grid-template-areas: 
    "header header header"
    "left-aside banner right-aside"
    "left-aside main right-aside"
    "footer footer footer";

  grid-gap: 10px; padding: 10px; */