/* General */
* {
    font-family: 'Kulim Park', Calibri, sans-serif;
}

body {
    width: 100vw;
    min-height: 100vh;
    color: whitesmoke;
    background-color: green;
    background-image: url(../images/background.png);
    background-attachment: scroll;
    overflow-x: hidden;
    box-sizing: border-box;
    margin: 0px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

main {
    width: 75%;
    min-width: 200px;
    margin: 0px auto 42px auto;
    position: relative;
}

a {
    color: white;
    text-decoration: none;
    padding: 2px;
    border-bottom: 1px solid white;
    line-height: 24px;
}

a:hover {
    color: black;
    background-color: whitesmoke;
    border-bottom: 1px solid black;
}

footer {
    position: absolute;
    left: 0;
    bottom: 0;
    margin-left: 4px;
    margin-bottom: 4px;
}

footer > p {
    margin: 0;
    font-size: 10px;
}

/* Scroll Bar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #98c24e;
}

::-webkit-scrollbar-thumb {
    background: #7da03e;
    border-radius: 7px;
}

::-webkit-scrollbar-thumb:hover {
    background: whitesmoke;
}

/* Main Menu */
#index > main {
    text-align: center;
}

#index > h1,
#index > p {
    font-weight: bold;
}

#index > main > img {
    width: 100%;
    max-width: 1024px;
}

#index > h1 {
    font-family: 'Lobster', Calibri, sans-serif;
    font-size: 10vw;
    margin: 0px;
}

@media screen and (max-width: 320px) {
    #index > h1 {
        font-size: 47px;
    }
}

#index #previews {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    padding-bottom: 7px;
    margin-bottom: 24px;
}

#index #previews > img {
    margin: 7px;
    border-radius: 10px;
    box-shadow: 4px 4px 10px black;
    width: 30%;
    min-width: 200px;
    max-height: 700px;
}

#index #appLink {
    position: relative;
    padding: 0px;
    border: 0;
    line-height: initial;
}

#index #appLink:hover {
    color: whitesmoke;
    background-color: transparent;
}

#index #appLink > p {
    margin: 0;
    padding: 0;
    font-size: 48px;
    font-size: xxx-large;
    font-size: -webkit-xxx-large;
    font-weight: bold;
    text-shadow: 2px 2px black;
}

#index #appLink > img {
    width: 100%;
    max-width: 512px;
}

#index #appLink:hover > img {
    transform: scale(0.9, 0.9);
}

#index main > ol {
    list-style: none;
    padding: 0;
}

#index main > ol > li {
    margin-top: 4px;
}

/* Attributions */
#attributions ol {
    list-style-type: upper-roman;
}

#attributions ol > li {
    margin-bottom: 26px;
}

#attributions ol > li > h2 {
    text-transform: capitalize;
    margin: 0;
}

#attributions ol > li > .subtitle {
    font-weight: initial;
    margin: 0px 0px 8px 4px;
}

#attributions ol > li > .subtitle > span {
    font-size: 75%;
}

#attributions ol > li > .desc {
    margin: 0px 0px 8px 4px;
}