:root {
    background-color:#c3f2ff;
    font-family: Roboto, sans-serif;
    font-size: 16px;
} 
.app {
    height: auto;
    max-width: 800px;
    height:auto;
    margin: auto;
    border:#007fad solid 1px;
    background: rgba(255, 255, 255, 0.8)
}
.myhero {
    height:200px;
    color:#ffffff;
    font: 600 30px system-ui;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    padding-left: 12px;
    background-color: #007fad;
    /*border: #000 1px solid;*/
    text-align: center;
}
.settings-link {
    width:100%;
    padding-top: 6px;
    text-align: right;
}
.settings-link img{
    width: 32px;
    height: 32px;
}
.mybannerwrapper {
    display:flex;
    flex-direction: column;
    background-color: #14f29b;
    margin:auto;
}
.title {
    text-align: left;
    padding: 6px;
    font-size: 32px;
}
#headings {
    color:#228B22;
    font-size: 22px;
    text-align: left;
    padding-top: 35px;
}
.myscorebanner {
    height:100%;
    padding: 1px;
    text-align: center;
    font: 25px system-ui;
    color: #ffffff;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    background-color: #23a6d5;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    flex: 1;
}
.mylevelbanner {
    height:auto;
    padding: 1px;
    text-align: center;
    font: 25px system-ui;
    color: #ffffff;
    background-color: #23a6d5;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
.progressbar {
    height:55px;
    width: 99.8%;
    background: rgb(148, 226, 255);
    border: #007fad solid 1px;
}
.progress {
    height:54px;
    width: 50px;
    color: #ffffff;
    text-align: center;
    font: 600 30px system-ui;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    background: repeating-linear-gradient(
    45deg,
    #23a6d5,
    #23a6d5 5%,
    #007fad 5%,
    #007fad 10%
    );
    background-size: 100px 100px;
    border:#007fad solid 1px;
    animation: move-it 10s linear infinite;
    overflow: hidden;
    flex: 1;
}
#wiggle-text {
    animation: wiggle 2.5s infinite;
}
@keyframes move-it {
    0% {
        background-position: initial;
    }
    100% {
        background-position: 100px 0px;
    }
}
@keyframes wiggle {
    0% { transform: rotate(0deg); }
    80% { transform: rotate(0deg); }
    85% { transform: rotate(5deg); }
    95% { transform: rotate(-5deg); }
    100% { transform: rotate(0deg); }
}
.mymain {
    display: flex;
    width: 100%;
    font-size: 22px;
    text-align: center;
    flex-direction: column;
}
#chorelist {
    display: none;
    width: 99%;
    font-size: 22px;
    text-align: center;
    padding-top: 6px;;
}
#prompt-wrapper {
    display:none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}
#prompt-body {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
}
#spend-levels {
    display: none;
    width: 98%;
    padding: 6px;
    font-size: 22px;
    text-align: center;
}
#acheivement-history {
    display: none;
    width: 98%;
    padding: 6px;
    padding-left: 20px;
    padding-right: 25px;
    font-size: 22px;
    text-align: center;
}
.level-award-table {
    padding-top: 20px;
    padding-right: 25px;
    width: 100%;
}
.level-award-table img{
    width: 60%;
}
.awards-1st-row {
    display: flex;
}
.awards-2nd-row {
    display: flex;
}
.buttonwrapper {
    display: flex;
    justify-content: center;
    padding: 26px;
}
.mybutton {
    width: 200vw;
    height:50px;
    color: #ffffff;
    background-color: #23a6d5;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    border:#007fad solid 1px;
    padding-top: 28px;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    text-align: center;
    font-size: 22px;
    user-select: none;
}
/*.mybutton:active{
    color:#007fad;
    background-color: #ffffff;
    border:#007fad solid 1px;
}*/
/*.mybutton:hover{
    color:#228B22;
    background-color: #ffffff;
    border:#228B22 solid 1px;
}*/
.mypoints {
    min-width: 85px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    padding: 10px;
    /*border: #000 2px solid;*/
    background-color: #007fad;
    color:#ffffff;
    text-align: center;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    font-size: 22px;
}
#usermenu {
    display: block;
    width:96%;
    padding: 6px;
    flex: 3;
    text-align: center;
}
.mainBtn {
    width: 200vw;
    height:50px;
    color: #ffffff;
    background-color: #007fad;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    border:#007fad solid 1px;
    padding-top: 28px;
    border-radius: 25px;
    text-align: center;
    font-size: 22px;
    user-select: none;
}
/*.mainBtn:active {
    color:  #007fad;
    background-color: #ffffff;
    border: #007fad solid 1px;
    user-select: none;
}*/
/*.mainBtn:hover {
    color: #228B22;
    background-color: #ffffff;
    border: #228B22 solid 1px;
}*/
.mainBtnInactive {
    width: 200vw;
    height:50px;
    color: #ffffff;
    background-color: #6e6e6e;
    border:#5a5a5a solid 1px;
    padding-top: 28px;
    border-radius: 25px;
    text-align: center;
    font-size: 22px;
}
.resetBtn {
    width: 200vw;
    height: 50px;
    color: #ffffff;
    background-color: #960000;
    border:#960000 solid 1px;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    padding-top: 28px;
    border-radius: 25px;
    text-align: center;
    font-size: 22px;
    user-select: none;
}
/*.resetBtn:active {
    color:#960000;
    background-color: #ffffff;
    border: #960000 solid 1px;
    user-select: none;
}*/
/*.resetBtn:hover {
    color:#FF0000;
    background-color: #ffffff;
    border: #FF0000 solid 1px;
}*/
.myfooter {
    height:100px;
    padding: 6px;
    color: #000000;
    text-align: center;
    /*background: rgb(7,0,48);*/
    /*background: linear-gradient(130deg, rgba(7,0,48,1) 0%, rgba(12,31,170,1) 50%, rgba(69,252,250,1) 100%);*/
}

@media only screen and (max-width: 800px) {
    .app {
        height: auto;
        width: auto;
    }
    .myhero {
        height: 175px;
    }
    
    .progressbar {
        height: 45px;
    }
    .progress {
        height: 44px;
    }
    #acheivement-history {
        padding-left: 6px;
        padding-right: 6px;
    }
    #spend-levels {
        width: 96%;
    }
    #prompt-body {
        width: 80%;
    }
}