html, body {
    padding: 0;
    margin: 0;
    font-family: Poppins, Arial, Helvetica, sans-serif;
}

:root {
    --slatepurple: #978FA8;
    --on-slatepurple: black;

    --margin-side: 100px;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px;

    max-height: 100px;

    padding-left: var(--margin-side);
    padding-right: var(--margin-side);

    background-color: var(--slatepurple);
}

@media screen and (max-width: 700px) {
    header {
        flex-direction: column;
        max-height: 200px;
        padding-left: 0;
        padding-right: 0;
    }
}

header > div {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

main {
    margin-left: var(--margin-side);
    margin-right: var(--margin-side);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.app-icon {
    border-radius: 15px;
    max-width: fit-content;
    max-height: 60px;
}

#app-name {
    font-weight: 600;
}

#links {
    list-style: none;
    display: flex;
    flex-direction: row;
}

#links > li > a {
    text-decoration: none;
    color: var(--lightslatepurple);
    font-size: 14pt;
}

#links > li > a:hover {
    opacity: 0.6;
}

.storeBadge {
    height: 78px;
    cursor: pointer;
}