/* 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." */

body {
  margin: auto;
  background-color: #275C36;
  background-image: url(/mainbg.png);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: 100% 100%, contain;
  color: #D6FFE0;
  font-family: 'MS-Sans-Serif';
  font-size: 12px;
  text-shadow: 1px 1px 10px #1a3300;
}

div {
  text-align: left;
  border-color: #003311;
  background-image: linear-gradient(#009933, #006622);
  width: 600px;
  margin: auto;
}
h1 {
  font-size: 3em;
  color: #D6FFE0;
  font-family: "MS-Sans-Serif";
  text-align: center;
  margin-left: 50px;
  margin-right: 50px;
    }
h2 {
  font-size: 2em;
  color: #D6FFE0;
  font-family: "MS-Sans-Serif";
  text-align: center;
  margin-left: 50px;
  margin-right: 50px;
  margin-top: 50px;
}
.button {
    background-color: #4CAF50;
    background-image: linear-gradient(#009933, #006622);
    border: solid;
    border-color: #003311;
    color: #B3FFB3;
    padding: 10px 10px;
    text-align: left;
    text-decoration: none;
    text-shadow: 0.5px 0.5px 2px #003311;
    display: inline-block;
    font-size: 12px;
    margin: 0px 0px;
    cursor: pointer;
}

.raycontainers {
    background-image: linear-gradient(#0099339c, #006622a3);
    box-shadow: rgb(0 0 0 / 30%) 0 3px 8px;
    padding: 10px 10px 10px 10px;
    max-width: 935px;
    margin: auto;
}
.aero-borders {
    border: 1px solid #4b4b4b;
}
.glass-borders {
    background-image: linear-gradient(rgba(48,48,48,.1),rgba(26,26,26,.1),rgba(26,26,26,.1));
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 12%), inset 0 0 8px rgb(255 255 255 / 10%), 0 5px 5px rgb(0 0 0 / 50%);
    border: 1px solid #686868;
    padding: 5px;
    margin: 8px auto 8px auto;
}