body {
    background: #226;
    font-family: jdfont;
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 1fr 2fr;
    grid-template-areas: "header header" "sidebar main" "sidebar footer";
  }
h1 {
    font-family: jdfontb;
}
header {
    grid-column: 1 / 3;
    border-radius: 14px;
    background-color: rgba(125, 225, 255, 0.2);
    text-align: center;
    padding: 1vw;
    color: #fff;
    border-bottom-left-radius: 1vw;
    border-bottom-right-radius: 1vw;
    justify-content: space-around;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-family: jdfontb;
    font-size: 24px;
  }
sidebar {
    grid-row: 2 / 4;
    background-color: rgba(125, 225, 255, 0.2);
    color: #fff;
    border-radius: 14px;
  }
main {
    grid-column: 2 / 3;
    background-color: rgba(125, 225, 255, 0.2);
    border-radius: 14px;
    padding: 10px;
    color: #fff;
  }
.main-top {
    display: flex;
    justify-content: space-between;
    align-content: center;
    padding: 10px;
    font-family: jdfontb;
    border-radius: 30px;
    background-color: #226;
  }
.cover {
    height: 150px;
    width: 150px;
    align-self: center;
    border-radius: 20px;
    margin-right: 20px;
  }
.title-box {
    display: flex;
    font-size: 40px;
    color: #fff;
    flex-grow: 1;
    margin: -10px;
    padding-left: 20px;
  }
.screenshot-games {
    display: flex;
    justify-content: space-between;
    align-content: center;
    padding: 10px;
    border-radius: 30px;
    background-color: #226;
  }
.screenshot {
    aspect-ratio: 16 / 9;
    flex-grow: 1;
    height: 300px;
    border-radius: 30px;
    margin-right: 20px;
  }
.game {
    height: 300px;
    align-content: space-between;
    text-align: center;
  }
.gamecover {
    height: 250px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
  }
.info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
.text-infobox {
    padding: 10px;
    border-radius: 30px;
    background-color: #226;
  }
.txtib-content {
    display: flex;
    justify-content: space-between;
    align-content: center;
    text-align: center;
    margin: 10px;
    background-color: rgba(125, 225, 255, 0.2);
    border-radius: 30px;
    flex-direction: column;
  }
.infobox {
    padding: 10px;
    border-radius: 30px;
    background-color: #226;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 8px;
    text-align: center;
  }
.artist, .album, .difficulty, .coaches {
    display: flex;
    justify-content: space-between;
    align-content: center;
    text-align: center;
    margin: 10px;
    background-color: rgba(125, 225, 255, 0.2);
    border-radius: 30px;
    flex-direction: column;
  }
 .artist {
    grid-column: 2;
    grid-row: 1;
}
 .album {
    grid-column: 3;
    grid-row: 1;
}
 .difficulty {
    grid-column: 2;
    grid-row: 2;
}
 .coaches {
    grid-column: 3;
    grid-row: 2;
}
.text-infobox {
    margin: 10px;
    background-color: rgba(125, 225, 255, 0.2);
    border-radius: 30px;
    grid-row: span 2 / span 2;
  }
.artist:hover, .album:hover, .difficulty:hover, .coaches:hover {
    background-color: rgba(125, 225, 255, 0.4);
    transition-duration: 1s;
  }
.artist-img, .album-img, .diff-img, .coach-info-img {
    height: 150px;
    width: 150px;
    align-self: center;
    border-radius: 20px;
    margin: 10px;
    }
.appearance {
    display: flex;
    justify-content: space-between;
    align-content: center;
    padding: 10px;
    border-radius: 30px;
    background-color: #226;
  }
.coach-image {
    display: flex;
    justify-content: center;
    align-content: center;
    text-align: right;
}
.coach-png {
    aspect-ratio: 1 / 1;
}
footer {
    grid-column: 2 / 3;
    background-color: rgba(125, 225, 255, 0.2);
    color: #fff;
    border-radius: 14px;
  }
@font-face {
    font-family: "jdfont";
    src: url("https://itstuzin.neocities.org/Just%20Dance%20Font%20Regular.ttf") format("truetype");
  }
@font-face {
    font-family: "jdfontb";
    src: url("https://itstuzin.neocities.org/Just%20Dance%20Bold.ttf") format("truetype");
  }