/* Basic Styling */
body {
    background-color: #0f755c;
}

h1 {
    width: 75%;
    margin: auto;
    text-align: center;
    font-family: 'Dosis';
    font-size: 4em;
    color: #fae5d7;
}

h3 {
    color: #fae5d7;
    width: 50%;
    margin: auto;
    text-align: center;
    font-family: 'Dosis';
    font-size: 2.5em;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

hr {
    width: 65%;
    color: white;
}

h1.freya {
    font-family: 'Sacramento';
}

h1.finn {
    font-family: 'Patrick Hand SC';
}

div.statblock {
    background-color: #fae5d7;
    padding: 0.5em;
    border-radius: 15px;
    width: 50%;
    margin: auto;
    text-align: center;
    font-family: 'Dosis';
    font-size: 1.5em;
    display: flex;
    justify-content: space-between
}

div.info-title {
    margin-bottom: 0.25em;
}

strong {
    font-weight: 1000;
    text-decoration: underline;
}

div.stat-left {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-evenly;
}

div.stat-center {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-evenly;
}

div.stat-right {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-evenly;
}


div.stat {
    padding-bottom: 0.5em;
}

div.btn-wrapper {
    margin: auto;
    text-align: center;
    display: flex;
    flex-flow: row;
    justify-content: center;
}

div.bot-wrapper {
    width: 50%;
    margin: auto;
    text-align: center;
    display: flex;
    flex-flow: column;
    justify-content: center;
}

form {
    margin: 0.25em;
}

div.side {
    width: 100%;
}

p.warning {
    font-family: 'Dosis';
    font-size: 1.5em;
    text-align: center;
    color: #ba2b29;
    background-color: #fae5d7;
    padding: 0.25em;
    border-radius: 10px;
    margin: 1em;
}

button.photo-load {
    width: 8em;
    height: 3em;
    font-size: 2em;
    font-family: 'Dosis';
    border-radius: 10px;
}

input.photo-load {
    width: 8em;
    height: 3em;
    font-size: 2em;
    font-family: 'Dosis';
    border-radius: 10px;
    margin-bottom: 1rem;
}

input.thin {
    font-size: 1em;
    margin-bottom: -1em;
    margin-top: 0.5em;
}

ul {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    padding: 0.5em;
}

li {
    height: 40vh;
    max-width: 100%;
    flex-grow: 1;
    padding: 0.25em;
}

li:last-child {
    flex-grow: 10;
}

img {
    max-height: 100%;
    min-width: 100%;
    object-fit: cover;
    vertical-align: bottom;
    border-radius: 10px;
}

/* Responsive Photo Stuff */

@media only screen and (max-width: 700px) {

    h1 {
        width: 100%;
        font-size: 3em;
    }

    div.statblock {
        width: 85%;
        flex-flow: column wrap;
    }

    ul {
        display: flex;
        flex-wrap: wrap;
        list-style-type: none;
        padding: 0.5em;
    }

    li {
        height: auto;
        max-width: 100%;
        flex-grow: 1;
        padding: 0.25em;
    }

    li:last-child {
        flex-grow: 10;
    }

    img {
        max-height: 100%;
        max-width: 100%;
        object-fit: cover;
        vertical-align: bottom;
    }
}

@media only screen and (max-width: 768px) {
    h1 {
        width: 100%;
        font-size: 4em;
    }

    div.btn-wrapper {
        width: 100%;
    }

    div.bot-wrapper {
        width: 100%;
    }

    div.statblock {
        width: 85%;
        justify-content: space-around;
    }
}
