body {
    width: 600px;
    margin: 0 auto;
    overflow-x: hidden;
}

nav, main, dialog {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

header {
    font-family: serif;
    font-size: 1.8rem;
    line-height: 2em;
    text-align: center;
    /* snippet is by baccyflap.com */
    background-image:url('images/palestine.svg');
    background-repeat:no-repeat;
    background-position:440px 0px;
    background-size:35px 60px;
    /* end of snipppet */
    h1 {
        margin-bottom: 10px;
    }
}

a {
    color: rgb(39, 134, 39);
}

a:hover {
    background: rgb(39, 134, 39);
    color: white;
}

nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    border: 1px solid rgb(199, 55, 55);
    background: rgb(199, 55, 55);
    color: white;
    margin-bottom: 5px;
    font-size: 1.1rem;
    a {
        text-decoration: none;
        color: white;
        padding: 5px;
        &:hover {
            background-color: rgba(145, 43, 43, 0.699);
            font-weight: bold;
        }
    }
}

h2 {
    margin-bottom: 10px;
}

p {
    margin: 5px 0;
}

.disclaimer {
    background: rgb(39, 134, 39);
    padding: 5px;
    color: white;
    border-radius: 5px;
}

li {
    list-style-type: '🍉 ';
}

form {
    margin-top: 8px;
}

label:not(label label) {
    margin-bottom: 5px;
    display: flex;
    flex-direction: row;
}

label:has(input[type="text"]) {
    display: flex;
}

input[type="text"] {
    flex: 1;
    margin-left: 3px;
}

.widgetd {
    padding: 10px;
    margin: 10px auto;
    border: 1px dashed gray;
    text-align: center;
}

pre {
    padding: 10px;
    margin-bottom: 0;
    border: 1px dashed gray;
    text-align: left;
    -webkit-user-select: all;
    user-select: all;
}

code {
    font-size: 0.7rem;
    text-wrap: wrap;
}

.members {
    display: table;
    width: 100%;
}

.member {
    display: table-row;
    padding: 2px;
    .numbers {
        max-width: 25px;
    }
    & div {
        display: table-cell;
        text-align: center;
        text-wrap: balance;
        vertical-align: middle;
        padding: 2px;
        a img {
            width: 88px;
            height: 31px;
        }
    }
}

@media only screen and (width <= 720px) {
    body {
        width: calc(100% - 20px);
        padding: 0 10px;
    }
    header {
        background-image:none;
    }
    .name {
        text-wrap: wrap !important;
    }
}

@media only screen and (width <= 690px) {
    .name, .url {
        width: min-content !important;
        max-width: 170px;
    }
}

@media only screen and (width <= 500px) {
    .url {
        display: none !important;
    }
}

@media only screen and (width <= 450px) {
    input[type="text"]:not([name="code"]) {
        flex: unset !important;
        width: 100%;
    }
}

@media only screen and (width <= 440px) {
    input[type="text"]:not([name="code"]) {
        flex: unset !important;
        width: 100%;
    }
}
