html, body, h1, h2, h3, p {
    font-family: "Segoe UI", "Helvetica Neue",sans-serif, Arial;
    margin: 0;
    padding: 0;
    outline: 0;
}
body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    
}
header {
    padding: 10px 0px 15px 0px;
    /*background-color: #355C7D;*/
    background-color: #4e4e4e;
    border-top: 1px solid #e2e2e2;
    border-bottom: 1px solid #e2e2e2;
}
header div {
    margin: 0 auto;
    width: auto;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: white;
}
main {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
}
footer {
    padding: 10px;
    margin-top: auto;
    /*background-color: #355C7D;*/
    background-color: #4e4e4e;
    border-top: 1px solid #e2e2e2;
    border-bottom: 1px solid #e2e2e2;
    color: white;
    text-align: center;
    font-size: 16px;
}

/* Template display options */
.template {
    width: 100%;
    padding: 15px;
    /*background-color: #355b7dc7;*/
    background-color: #313131;
    border: 1px black solid;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#templateHolder {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    padding: 20px 30px 30px 30px;
    border: 3px solid black;
    border-radius: 30px;
    max-width: 90%;
}
.titles {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
}
.descriptions {
    text-align: center;
    margin-bottom: 35px;
    max-width: 100%;
}
.examples {
    text-align: center;
}

.examples .imgEx {
    max-width: 100%;
    max-height: 530px;
    border: 1px black solid;
    box-shadow: 0px 0px 15px 3px black;
    object-fit: cover;
}

/* Select menu options */
.optionHolder {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.optionHolder img {
    height: 25px;
    margin: 0px 0px 15px 15px;
    padding: 3px;
    border: 1px solid #e2e2e283;
    border-radius: 5px;
    cursor: pointer;
}

.custom-select {
    position: relative;
    display: block;
    max-width: 400px;
    min-width: 180px;
    margin: 20px auto 35px auto;
    border: 1px solid #4e4e4e;
    background-color: #1b1b1b;
    z-index: 10;
}

.custom-select select {
    border: none;
    outline: none;
    background: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    margin: 0;
    display: block;
    width: 100%;
    padding: 12px 55px 15px 15px;
    font-size: 14px;
    color: #cdcdcd;
}

.custom-select select option {
    background-color: #1b1b1b;
    color: #cdcdcd;
    border-radius: 0;
}

.custom-select:after {
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 100%;
    line-height: 38px;
    content: '\2228'; /*Logical OR symbol lol*/
    text-align: center;
    color: #cdcdcd;
    font-size: 24px;
    border-left: 1px solid #4e4e4e;
    z-index: -1;
}

.errorCase {
    color: red;
    max-width: 600px;
}

@media screen and (max-width: 600px) {
    header { padding: 10px; }
    header div { font-size: 24px; }
    .titles { font-size: 28px; }
    .template { padding: 5px 0 0 0; height: 100% }
    #templateHolder { padding: 15px; }
    .examples img { max-height: 430px !important; }
}

@media screen and (min-width: 601px) and (max-width: 800px) {
    .titles { font-size: 28px; }
}

@media screen and (min-width: 801px) and (max-width: 1200px) {
    html { margin: 0; }
    .descriptions { max-width: 700px; }
}

@media screen and (min-width: 1201px) {
    .descriptions { max-width: 800px; }
}