@import url('dancing-script.css');

@font-face {
  font-family: cyberway-raiders;
  src: url(../fonts/CyberwayRiders-lg97d.ttf);
}

body {
  background-image: linear-gradient(to bottom right, black, black, indigo);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
  color: white;
  margin: 0;
}

.logo {
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media screen and (max-width: 700px) {
  .section-width {
    width: 90%;
    display: block;
  }

  .logo-display {
    display: block;
    height: 190px;
    width: 100%;
  }

  .centered {
    display: block;
    align-items: center;
    text-align: center;
  }

  .show-content td {
    padding: 1px;
  }

  .content h1 {
    font-family: cyberway-raiders;
    font-size: 30px;
    color: #00ffaa;
  }

  .content p {
    font-family: "Lucida Console", monospace; 
    font-size: 13px;
  }

  .img-logo {
    width: 320px;
    height: 180px;
  }
}

@media screen and (min-width: 701px) {
  .section-width {
    width: 400px;
    display: flex;
  }

  .logo-display {
    display: flex;
    height: 275px;
    width: 100%;
  }

  .centered {
    display: flex;
    justify-content: center; 
    align-items: center;
    text-align: center;
  }

  .show-content td {
    padding: 5px;
  }

  .content h1 {
    font-family: cyberway-raiders;
    font-size: 50px;
    color: #00ffaa;
  }

  .content p {
    font-family: "Lucida Console", monospace; 
  }

  .img-logo {
    width: 560px;
    height: 315px;
  }
}

.section-bg {
  background: linear-gradient(45deg, #4eb5ffFF, #6028b099, #b0289e55);
  margin: 10px;
}

.section-border {
  padding: 3px;
  clip-path: polygon(
    30px 0%,
    100% 0%,
    100% calc(100% - 30px),
    calc(100% - 30px) 100%,
    0% 100%,
    0% 30px
  );
}

.page-border{
  width: 80%;
  height: 80%;
  padding: 3px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.page-content {
  width: calc(100% - 10px);
  height: calc(100% - 10px); 
  background-color: rgba(0, 0, 0, 0.7);
}

.external-border {
  background: linear-gradient(45deg, #4eb5ff88, #6028b088, #b0289e88);
}

.content {
  background-color: rgba(0, 0, 0, 0.7);
  width: calc(100% - 10px);
  cursor: pointer;
}


.grid-section {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
}

.show-content {
  margin-left: 20px;
  margin-right: 40px;
  width: calc(100% - 60px);
  display: block;
  border-radius: 2px 2px 10px 10px;
  overflow: hidden;
}

.icons {
  color: purple;
  padding: 10px;
  width: 20px;
  height: 20px;
  text-align: left;
  text-decoration: none;
  border-radius: 30%;
}

.fa-odd {
  background-image: linear-gradient(to bottom, cyan, pink);
}

.fa-even {
  background-image: linear-gradient(to bottom, pink, cyan);
}

.icons:hover {
  opacity: 0.7;
}
