body {
    margin: 0;
    padding: 0;
    background-color: black;
    background-image: url(Images/starsonlybg.png);
    background-attachment: fixed;
    background-size: 100% 100%;
    width: 100vw;
}

a {
    color: white;
    text-decoration: none;
}

/* Navbar stuff */

.navbar {
    background-color: #3333335e;
    margin: 16px;
    border-radius: 16px;
    right: 0;
    left: 0;
    padding: 8px;
    position: fixed;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(1px);
    z-index: 1000;
}

.navbar ul {
    display: flex;
    justify-content: right;
    list-style-type: none;
    margin: 0;
    padding-right: 4px;
    gap: 8px;
}

.navbar li {
    padding: 8px;
    font-family: "lores-28", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    color: white;
    background-color: rgba(82, 82, 82, 0.309);
    backdrop-filter: blur(8px);
    border-radius: 8px;
}

.navbar a:hover,
.navbar li:hover {
    background-color: #0f77b7;
}

.site-logo {
    font-family: "lores-28", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 40px;
    color: white;
    padding-left: 4px;
}

.mobile-drawer {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: whitesmoke;
    padding-right: 8px;
}

.mobile-drawer:hover {
    color: #0f77b7;
}

@media (max-width: 768px) {
    .mobile-drawer {
        display: block;
    }

    .navbar ul {
        flex-direction: column;
        display: none;
        background-color: #333;
        position: absolute;
        top: 64px;
        right: 0;
        width: 200px;
        padding: 24px;
    }

    .navbar ul.active {
        display: flex;
    }
}

/* Body and the works */

.main {
    text-align: center;
    min-height: 1920px;
    position: relative;
}

/* Capy Space Agency Text */

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 28vh;
    padding-bottom: 24vh;
}

.xxlarge {
    font-family: "lores-21-serif", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: white;
    font-size: 128px;
}

@media (max-width: 768px) {
    .xxlarge {
        font-size: 96px;
    }
}

.footer {
    margin-top: 24vh;
    position: absolute;
    bottom: 0;
    overflow: hidden;
    max-width: 100vw;
}

.infobox {
    background-color: #3333335e;
    backdrop-filter: blur(8px);
    left: 0;
    right: 0;
    padding: 16px;
    margin-left: 16px;
    margin-right: 16px;
    border-radius: 16px;
}

.rockruff {
    border: none;
    height: 4px;
    left: 0px;
    right: 0px;
    background-color: rgba(82, 82, 82, 0.309);
    backdrop-filter: blur(8px);
    border-radius: 8px;
}

.infosubbox {
    margin-top: 16px;
    background-color: rgba(82, 82, 82, 0.309);
    backdrop-filter: blur(8px);
    border-radius: 16px;

    display: flex;
    flex-direction: row;
}

.infoimg {
    border-radius: 16px;
    height: fit-content;
    max-width: 251px;
}

.hedgehog {
    display: flex;
    flex-direction: column;
    padding: 16px;
}

.large {
    font-family: "lores-21-serif", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: white;
    font-size: 28px;
}

.panini {
    font-family: "lores-12", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: white;
    font-size: 20px;
}

.umbreon {
    background-color: #1495e6;
    padding: 4px;
    border-radius: 8px;
    font-family: "lores-12", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.umbreon:hover {
    background-color: #0f77b7;
}

@media (min-width: 768px) {
    .infosubbox {
        display: flex;
        flex-direction: column;
        max-width: 251px;
    }
}

@media (min-width: 769px) {
    .infoflex {
        display: flex;
        justify-content: center;
        gap: 16px;
    }
}