body {
    background-image: url("../../assets/cypress/visuals/cover/Extension Standard.png");
    background-size: cover;
    background-attachment: fixed;
}
.navigation {
    position: fixed;
    bottom: 0;
    width: 100%;
    margin-bottom: 18px;
}
.navigation button {
    width: 30%;
    font-size: xx-large;
}
@media screen and (orientation:portrait) {
    .navigation button {
        font-size: 5vw;
    }
}
#titlescreen {
    font-size: xx-large;
}
.item {
    cursor: pointer;
    background-color: #000a;
    border: 2px solid white;
    display: inline-block;
    vertical-align: top;
    width: 128px;
    margin: 8px;
    padding: 8px;
}
.packIcon, .packLogo {
    cursor: pointer;
}

#overlay {
    z-index: 100;
    display: none;
    position: fixed;
    background-color: #0009;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
}
.menu {
    width: 880px;
}
@media screen and (orientation: portrait) {
    .menu {
        width: 90%;
    }
}
@media screen and (max-width: 980px) {
    .menu {
        width: 90%;
    }
}

#displayClose {
    cursor: pointer;
    font-size: larger;
    text-align: right;
    color: #ff6;
    text-decoration: underline;
}
#cover {
    object-fit: cover;
    width: 100%;
    height: 240px;
}
#pack {
    position: relative;
    object-fit: fill;
    width: 128px;
    height: 128px;
    margin-top: -64px;
    background-color: #000a;
    border-top: 2px solid #91b6b3;
    border-left: 2px solid #91b6b3;
    border-bottom: 2px solid #648aa8;
    border-right: 2px solid #648aa8;
    border-radius: 12px;
}
#packName {
    font-size: 3em;
}
.description {
    width: 95%;
    margin: auto;
}
.description p:first-child {
    font-size: x-large;
}
#desc {
    border-radius: 8px;
    background-color: #0009;
    padding: 8px;
}
#download {
    cursor: pointer;
    font-size: x-large;
    color: #ff6;
    text-decoration: underline;
}
a {
    text-decoration: none;
}
@media screen and (orientation: portrait) {
    #cover {
        object-fit: contain;
        width: 100%;
        height: auto;
    }
    #packName {
        font-size: 4vh;
    }
    #download {
        font-size: large;
    }
}
@media screen and (max-width: 640px) {
    #pack {
        width: 96px;
        height: 96px;
        margin-top: -48px;
    }
}