body {
    background-color: #070113; 
}

.navc { /* Navbar Background Color Class */
    background-color: #10101a; 
}

.hdr { /* Hero Section Background Class */
    background-image: url("assets/3451499.jpg"); /* This Image is from Freepik, Author: pikisuperstar */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 937px;
    box-shadow: inset 0px -80px 64px -12px rgba(16, 16, 26, 1);
}

.games { /* Supported Games Section Background Class */
    background-image: url("assets/Blurple-Banner.jpg"); /* This Image is from Vecteezy, Author: zee.lfc2222 */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: inset 0px 22px 30px 12px #180a31;
}

.fcolort { /* Footer SVG Color Class */
    color: #16162e;
}

.fcolorb { /* Footer Background Color Class */
    background-color: #16162e;
}

@media only screen and (max-width: 650px) {
    .hdr {
        height: 667px;
    }
  }

  @media only screen and (max-width: 1000px) {
    .hdr {
        height: 800px;
    }
  }

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(
        rgb(138, 20, 229),
        rgb(111, 51, 228),
        rgb(84, 67, 223),
        rgb(56, 76, 217),
        rgb(21, 83, 208)
    );
}

html {
    scroll-behavior: smooth;
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 20px 0;
}

.footer-img {
    width: 120px; /* fixed size that doesn't shrink too much */
    border-radius: 50%;
    margin-bottom: 15px;
    .flex { justify-content: center; align-items: center; }
}

#footer-brand {
    font-weight: bold;
    background: linear-gradient(to right, #4620ae, #6745c6, #d9d9d9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    font-family: 'Muli', sans-serif;
    font-size: 28px;
}

#footer-copy {
    font-size: 14px;
    font-family: 'Muli', sans-serif;
    text-align: center;
    color: #ccc;
    margin-bottom: 20px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px; /* adds top and bottom padding */
    gap: 24px; /* evenly spaces out image, brand, and copyright */
}