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

@font-face{
  font-family: 'Bulbear';
  src: url("/fonts/Bulbear.otf");
}

@font-face{
  font-family: 'Roundex';
  src: url("/fonts/Roundex.otf");
}

body {
  font-family: Roundex;
  font-size: large;
  background-color: #1f1f23;
}

.layout{
  display: grid;
  grid-template-columns: repeat(12, [col-start] 1fr);
  gap: 20px;
}

.main{
  background-color: black;
  color: white;
  border-style: solid;
  border-radius: 5px;
  border-color: green;
  
  text-align: center;
}

@keyframes flip {
  0% {transform: rotateY(0deg)}
  25%  {transform: rotateY(-180deg)}
  75% {transform: rotateY(180deg)}
}

.main-container{
  animation-iteration-count: infinite;
  grid-column: 6/8;
  grid-row: 12;
  box-shadow: 
    0px 80px 10px #1a1a1e;
  width: 100%;
  border-radius: 100%;
  
}

.main{
  animation-name: flip;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  font-size: small;
  color: green;
  width: 100%;
  height: 100%;
  font-size: xx-large;
  box-shadow:
    2px -1px 1px #c0ffc0,
    0 -1px 1px #055403,
    -1px 1px 1px #00ff00,
    0 0 2px #a5ffa5;
  text-shadow:
    2px -1px 1px #c0ffc0,
    0 -1px 1px #055403,
    -1px 1px 1px #00ff00,
    0 0 2px #a5ffa5;
}

h2{
  grid-column: 5/9;
  color: green;
  font-size: xxx-large;
  text-align: center;
  grid-row: 3/8;
  text-shadow:
    2px -1px 2px #c0ffc0,
    0 -1px 2px #055403,
    -1px 1px 2px #00ff00,
    0 0 2px #a5ffa5;
}

.main-title{
  align-content: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-10deg);
  
}

.main-title p{
  font-size: xx-large;
  color: green;
  text-shadow:
      0 2px #00ff0f,
      0 4px #1a751a;
}

.sidebar{
  grid-column: 2/3;
  grid-row: 2/11;
}


