body {
  background-image: url("/img/carpet.gif");
  font-family: "Nunito";
  color: #696969;
}

.nunito-font {
  font-family: "Nunito", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.top-container {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-gap: 5px;
    width: 1000px;
    border: 0px solid black;
    margin: auto;
    padding: 5px;
    justify-content: center;
    margin-top: 2em;
}

.top-child {
  border: 0px solid #ccc;
  padding: 0px;
  text-align: center;
  align-content: center;
}

.top-links {
  border: 0px solid #ccc;
  padding: 0px;
  text-align: center;
  align-content: center;
  padding-left: 10pt;
  font-size: 13pt;
  word-spacing: 1rem;
  letter-spacing: 1pt;
  font-weight: bold;
}

.grid-container {
    display: grid;
    grid-template-columns: 55% 45%;
    grid-gap: 5px;
    width: 1000px;
    height: 550px;
    border: 5px solid #27313f;
    margin: auto;
    padding: 5px;
    border-radius: 0em;
    background-color: #fff;
    justify-content: center;
}

.grid-child {
  border: 0px solid #ccc;
  padding: 0px;
}

.frame {
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
}

h1 {
  font-size: 60pt;
  line-height: 0px;
  letter-spacing: 15pt;
  font-family: "Nunito";
  margin-left: 1em;
  color: #313d4e;
  text-shadow: 
   1px 1px 2px #14191f,
    0 0 0em #14191f,
    0 0 10px #b1bdce;
  font-weight: 900;
}

h2 {
  font-size: 25pt;
  letter-spacing: 3pt;
}

/* nav link style */
a:link {
  color: black;
  text-decoration-style: wavy;
}
a:visited {
  color: black;
  text-decoration-style: wavy;
}
a:hover {
  color: #C3453C;
  text-decoration-style: wavy;
  text-decoration-color: #3CBAC3;
  cursor: help;
}
a:active {
  color: #0A3FED;
  text-decoration-style: wavy;
  text-decoration-color: #3CBAC3;
  cursor: help;
}

/* TESTING CSS SHIT DOWN HERE */
.button {
  border: none;
  color: #8098B0;
  padding: 10px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}

.button1 {
  background-color: #8098B0; 
  color: black; 
  border: 2px solid #27313F;
}

.button1:hover {
  background-color: #04AA6D;
  color: white;
}

.button2 {
  background-color: white; 
  color: black; 
  border: 2px solid #008CBA;
}

.button2:hover {
  background-color: #008CBA;
  color: white;
}

