body {
    padding: 30px;
}

img {
    max-width: 60%;
}

#problem-list-container {
    border-radius: 5px;
    background-color: #ff9999;
    padding: 5px;
    margin: 5px;
}

.info-bottomtext {
    font-weight: bold;
    color: #888888;
}

.problem-container-div {
    font-family: Menlo;
    border-radius: 3px;
    background-color: #ffcccc;
    padding: 5px;
    margin: 8px;
    box-shadow: 2px 2px 2px 2px #333333;
    font-weight: bold;
    transition: all 0.3s;
}

.problem-container-div:hover {
    background-color: #ffeeee;
    box-shadow: 1px 1px 1px 1px #333333;
}

.homepage-badge {
    border-radius: 25px;
    float: right;
    padding: 5px;
    border: 2px solid black;
}

#main-container {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

#run-score-box {
    background-color: #dddddd;
    display: none;
}

.result-box {
    font-family: Menlo;
    font-size: 14px;
    border-radius: 3px;
    margin-top: 3px;
    margin-bottom: 3px;
    padding: 5px;
}

#run-example-box {
    background-color: #adebb3;
    display: none;
    padding: 5px;
    margin-top: 3px;
    margin-bottom: 3px;
    border-radius: 3px;
}

.run-example-subbox {
    background-color: #9eb8a0;
}

#code-error-box {
    font-family: Menlo;
    font-size: 14px;
    display: none;
    border-radius: 3px;
    background-color: #ffdddd;
    margin-top: 3px;
    margin-bottom: 3px;
    padding: 5px;
}

#code-run-button {
    margin-bottom: 5px;
}

.progress-bar {
  height: 6px;
  background-color: rgba(5, 114, 206, 0.2);
  width: 100%;
  overflow: hidden;
  margin-top: 5px;
  margin-bottom: 5px;
  display: none;
}

.progress-bar-value {
  width: 100%;
  height: 100%;
  background-color: rgb(5, 114, 206);
  animation: indeterminateAnimation 2s infinite linear;
  transform-origin: 0% 50%;
}

#editor {
    width: 70%;
    float: left;
}

#scoring-hint-box {
    font-family: Menlo;
    font-size: 14px;
    display: inline-block;
    width: 25%;
    margin-left: 10px;
}

@keyframes indeterminateAnimation {
  0% {
    transform:  translateX(0) scaleX(0);
  }
  40% {
    transform:  translateX(0) scaleX(0.4);
  }
  100% {
    transform:  translateX(100%) scaleX(0.5);
  }
}

blockquote {
    padding: 5px;
    background-color: #eeeeee;
}

blockquote p {
    margin: 0px;
}

.effect-shine {
    -webkit-mask-image: linear-gradient(45deg,#000 45%,rgba(0,0,0,.1) 50%,rgba(0,0,0,.1) 51%,#000 55%);
    mask-image: linear-gradient(45deg,#000 45%,rgba(0,0,0,.1) 50%,rgba(0,0,0,.1) 51%,#000 55%);
    -webkit-mask-size: 300%;
    mask-size: 300%;
    /* -webkit-mask-position: 0; */
    /* mask-position: 0; */

    animation-name: shine;
    animation-duration: 4s;   
    animation-iteration-count: infinite;
 
    /* animation-iteration-count: infinite;
    transition: mask-position 2s ease,-webkit-mask-position 2s ease;
    -webkit-mask-position: 120%;
    mask-position: 120%;
    opacity: 1; */
}

@keyframes shine {
    from {
        mask-position: 120%;
        -webkit-mask-position: 120%;
    }
    to {
        mask-position: 0%;
        -webkit-mask-position: 0%;
    }
}

.difficulty-rating {
    display: inline-block;
}

.challenge-title-div {
    display: block;
}

.challenge-title {
}

.subtitle-span {
    display: block;
    font-size: 12px;
    color: #888888;
}

.challenge-page-subtitle {
    font-size: 16px;
    color: #888888;
}
