

@font-face {
  font-family: 'FontGreatLakesShadowNF'; /*a name to be used later*/
  src: url('GreatLakesShadowNF.ttf'); /*URL to font*/
}

body {
    /* background-color: rgb(0, 0, 0); */
    background-color: #1C1C1C;
    
  }

h1 {
  font-family: 'FontGreatLakesShadowNF';
  color: #F4831B;
  font-size: 150px;
  text-align: center;
}

h2 {
  font-family: 'FontGreatLakesShadowNF';
  color: #F4831B;
  font-size: 75px;
  text-align: center;
}


p {
  /* font-family: 'YourFontName'; */
  color: #F4831B;
  font-size: 50px;
  
}


.button {
  border: none;
  color: white;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
    
  font-size: 25px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}

.button1 {
  background-color: #04AA6D;
  font-family: 'FontGreatLakesShadowNF';
  font-size: 75px;
  width: 33%;
  height: 250pt;
  border-radius:30px;
  color: black;
  border: 1px solid #04AA6D;
}

.button1:hover {
  opacity: 8;
  background-color: #303030;
  color: #04AA6D;
}

.button2 {
  background-color: #008CBA;
  font-family: 'FontGreatLakesShadowNF';
  font-size: 25px;
  width: 45%;
  height: 50pt;
  border-radius:30px;
  color: black;
  border: 1px solid #008CBA;
}

.button2:hover {
  background-color: #303030;
  color: #008CBA;
}

.button3 {
  background-color: #F4831B;
  font-family: 'FontGreatLakesShadowNF';
  font-size: 45px;
  width: 100%;
  height: 65pt;
  border-radius:30px;
  color: black;
  border: 1px solid #F4831B;
}

.button3:hover {
  background-color: rgb(65, 17, 0);
  color: #F4831B;
}

.button-grid {
  background-color: #04AA6D;
  font-family: 'FontGreatLakesShadowNF';
  font-size: 75px;
  width: 100%;
  height: 250px;
  border-radius:30px;
  color: black;
  border: 1px solid #04AA6D;
}

.button-grid:hover {
  opacity: 8;
  background-color: #303030;
  color: #04AA6D;
}

.button-grid2 {
  background-color: #902EBB;
  font-family: 'FontGreatLakesShadowNF';
  font-size: 100px;
  width: 100%;
  height: 250px;
  border-radius:30px;
  color: black;
  border: 1px solid #902EBB;
}

.button-grid2:hover {
  opacity: 8;
  background-color: #3b134d;
  color: #902EBB;
}

.button-grid3 {
  background-color: #F4831B;
  font-family: 'FontGreatLakesShadowNF';
  font-size: 100px;
  width: 100%;
  height: 250px;
  border-radius:30px;
  color: black;
  border: 1px solid #F4831B;
}

.button-grid3:hover {
  opacity: 8;
  background-color: rgb(112, 31, 2);
  color: #F4831B;
}

.grid-container {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 10px;
  padding: 10px;
}

.grid-container > div {
  border: 0px solid black;
  text-align: center;
  font-size: 30px;
}

.grid-container2 {
  display: grid;
  grid-template-columns: auto auto;
  gap: 10px;
  padding: 10px;
}

.grid-container2 > div {
  border: 0px solid black;
  text-align: center;
  font-size: 30px;
}

.mainDiv1 {
  margin: auto;
  text-align: center;
}