body {
  background-color: #6bc3db;
}

.editText {
    border: 2px solid powderblue;
    border-radius: 8px;
    font-size: 1.5rem;
    color: grey;
    resize: horizontal;
    width: 90%;
    font-family: Arial;
}

.editTextLarge {
    height: 150px;
}

.editTextPercent {
    width: 37px;
    text-align: right;
}

.colorPickerStyle {
    margin: 0px 0px;
}

.submitButton {
    background-color: #4CAF50;
    border: none;
    color: white;
    border-radius: 10px;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.25rem;
    margin: 4px 2px;
    cursor: pointer;
    font-family: Californian FB;
    font-weight: normal;
}

.banner {
    margin: auto;
    width: 20%;
    padding: 15px 60px;
    border-radius: 10px;

    background-color: transparent;

    text-align: center;
    font-size: 2rem;
    font-family: Californian FB;
    font-weight: bold;
}


.textContent {
    width: 35%;
    margin: auto;
    background-color: transparent;
    text-align: center;
    font-size: 1.5rem;
    font-family: Californian FB;
    font-weight: normal;
    padding: 15px 0px;
    border-radius: 10px;
}

.popup {
    display: none;
    margin: auto;
    width: 30%;
    background-color:#D9D9D9;
    color: black;
    text-align: center;
    font-size: 1rem;
    font-family: Californian FB;
    font-weight: normal;
    padding: 15px 10px;
    border-radius: 10px;
}

.fadeInOut {
    display: none;
}

.headerLink {
    cursor: pointer;
    background-color: #D9D9D9;
    border-radius: 5px;
    padding: 5px;
    font-size: 1.5rem;
}

.headerBar {
    position: fixed;
    top: 10px;
    right: 10px;
    left: 10px;
    height: 30px;
    background-color: #b1b1b1;
    border: 1px solid black;

    -webkit-backface-visibility: translate(0); /* Needed for the header bar to scoll with content on Mobile*/
}

table, th, td {
    border: 1px solid black;
    border-radius: 5px;
    background-color: #D9D9D9;
}

ul {
    border-radius: 10px;
    background-color: #D9D9D9;
    list-style-type: none;
    left: 0;
    right: 0;
    margin: 0;
    padding: 20px;
}

li {
    display: inline;
    padding: 10px;
}

.externalHeaderLink {
    background-color: #b1b1b1;
    float: right;
    margin: -4px 5px 0px 0px;
}

.widthImageHolder {
    width: 70%;
    display: flex;
}


/* Alternatives for rendering on mobile devices (tablet, smartphone) */
@media (max-width: 1000px) {
    .banner {
        margin: auto;
        width: 40%;
        padding: 15px 60px;
        border-radius: 10px;

        background-color: transparent;

        text-align: center;
        font-size: 2rem;
        font-family: Californian FB;
        font-weight: bold;
    }

    .textContent {
        width: 85%;
        margin: auto;
        background-color:#D9D9D9;
        text-align: center;
        font-size: 1.75rem;
        font-family: Californian FB;
        font-weight: normal;
        padding: 15px 0px;
        border-radius: 10px;
    }

}

