
.lexend-deca-500 {
  font-family: "Lexend Deca", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.lexend-deca-300 {
  font-family: "Lexend Deca", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.red-hat-mono-400 {
  font-family: "Red Hat Mono", "Lexend Deca", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.red-hat-mono-600 {
  font-family: "Red Hat Mono","Lexend Deca", monospace;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

a {
  text-decoration: underline;
  color: #acd3ff;
}
a:hover {
  color: #e1fff8;
}
.fakelink {
  font-family: "Lexend Deca", arial, sans-serif;
  font-size: 20px;
  text-decoration: underline;
  border: none;
  background: none;
  color: #c0e8ff;
  padding: 0;
  margin: 0;
}
.fakelink:hover {
  color: #e1fff8;
  cursor: pointer;
}


body {
    background-color: #000;
    background-image: url(https://file.garden/ZeeTFRo9KEiz9hAQ/MarbleWallpaper6.webp);
    background-size: cover;

    color: #ffffff;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
}

.top-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
    background-color: #1b1919;
        background: linear-gradient(to bottom, #1d1d1d 10%, #000000 90%);
    padding: .6em;
    text-align: center;
    position: relative;
}

main {
    padding: 14px;
}

.buttons-section {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 14px;
}

.mainbutton {
  font-family: 'Lexend Deca', arial, sans-serif;
  text-decoration: solid;
  font-weight: bold;
      color: #ffffff;
  padding: 0.7em 1.7em;
  background: linear-gradient(to bottom, #1d1d1d 0%, #000000 90%);
  cursor: pointer;
  border: 8px solid #1a1a1a;
  transition: all 0.3s;
      font-size: 1.2vw;
      margin-left: 0.3vw;
      margin-right: 0.3vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 3vh;
}

.mainbutton:hover {
    background-color: #1f1f1f;
    color: #000000;
    border: 8px solid #ffffff;
    cursor: pointer;
    margin-left: 0px;
    margin-right: 0px;
    background: linear-gradient(to top left, #2f96b6, #e67489);
    box-shadow: 6px 6px 12px #2f96b6, -6px -6px 12px #e67489;
    padding: 0.7em 1.3em;
}

#content {
  display: flex;
  justify-content: center;
  width: 100%;
}
.content-section {
  text-align: left;
  font-family: "Lexend Deca", arial, sans-serif;
  font-size: 20px;
  background-color: #000000;
  background: linear-gradient(to bottom, #2e2e2e 0%, #141414 90%);
  padding: 20px;
  padding-left: 25px;
  padding-right: 25px;
  padding-bottom: 2em;
  height: fit-content;
  width: 55vw;
  margin-bottom: 300px;
  box-shadow: 6px 6px 12px rgba(84, 56, 97, 0.5), -6px -6px 12px rgba(84, 56, 97, 0.5);
  border: 4px solid #614b69;
    transition: all 0.4s;
  cursor: inherit;
}


.content-section:hover {
  color: #ffffff;
  border: 4px solid #bd8ecf;
  cursor: pointer;
  box-shadow: 6px 6px 12px rgba(221, 146, 255, 0.5), -6px -6px 12px rgba(221, 146, 255, 0.5);
  cursor: inherit;
}




#ASCIItitle{
  background-image: linear-gradient(
    25deg,
    #989ecb 10%,
    #8ca4c6 20%,
   #a7acb4 53%,
    #eeae93 90%
  );
/*title gradient shenanigans*/
  background-size: auto auto;
  background-clip: border-box;
  background-size: 100% auto;
  color: #fff;
  background-clip: text;
  text-emphasis-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-size: 20px;
}

.attribution {
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
}

.link-section {
  display: flex;
    justify-content: right;
    position: relative;
    float: right;
    margin-right: 25px;
}

.linkbutton {
  font-family: 'Lexend Deca', arial, sans-serif;
  text-decoration: none;
  color: #cccccc;
  cursor: pointer;
  font-size: 26px;
  margin: 3px;
    transition: color 0.3s ease-in-out;
}

.linkbutton:hover {
  color: #ffffff;
}

footer {
	font-family: 'Lexend Deca', arial, sans-serif;
    background: linear-gradient(to bottom, #202020, #000000);
	padding: 22px;
	position: relative;
  display: flex;
  justify-content: space-between;
}

.footer-img {
  width: 400px;
  height: 250px;
  position: absolute;
  bottom: 0px;
  right: 0;
}

/* digifox is doing something here idk what it is 
-->*/.image {
  display: flex;
  justify-content: right;
}

.image-img {
  width:100%;
  border: 4px solid #65718b;
  transition: all 0.4s;
}

.image-img:hover {
  animation: customAni 0.5s ease 0s normal none;
  box-shadow: 0px 0px 12px rgba(146, 180, 255, 0.5);
  border: 4px solid #9fb2dc;
  transition: all 0.4s;

}

@keyframes customAni {
  25% {
	transform: scale3d(1, 1, 1);
  
  }

  30% {
	transform: scale3d(0.75, 1.25, 1);
  }

  40% {
	transform: scale3d(1.25, 0.75, 1);
  }

  50% {
	transform: scale3d(0.85, 1.15, 1);
  }

  65% {
	transform: scale3d(1.05, 0.95, 1);
  }

  75% {
	transform: scale3d(0.95, 1.05, 1);
  }

  100% {
	transform: scale3d(1, 1, 1);
  }
}

/* <-- end digifox section */


