html,
body {
    margin: 0;
    height: 100vh;
}

#content {
    height: auto;
    font-family: 'Rubik', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#contentZero {
    height: 100vh;
    font-family: 'Rubik', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 20px;
}

#header img {
    width: 30vw;
    padding: 1vh 0;
}

#thermometer {
    width: 70px;
    height: 300px;
    position: relative;
    background: #ddd;
    border: 2px solid #aaa;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    border-radius: 100px;
    -webkit-box-shadow: 1px 1px 4px #999, 5px 0 20px #999;
    -moz-box-shadow: 1px 1px 4px #999, 5px 0 20px #999;
    -ms-box-shadow: 1px 1px 4px #999, 5px 0 20px #999;
    -o-box-shadow: 1px 1px 4px #999, 5px 0 20px #999;
    box-shadow: 1px 1px 4px #999, 5px 0 20px #999;
}

#thermometer .track {
    height: 280px;
    top: 10px;
    width: 20px;
    border: 2px solid #aaa;
    border-top-left-radius: 1em;
    border-top-right-radius: 1em;
    border-bottom-left-radius: 1em;
    border-bottom-right-radius: 1em;
    position: relative;
    margin: 0 auto;
    background: rgb(255, 255, 255);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(0, 0, 0)), color-stop(1%, rgb(255, 255, 255)));
    background: -webkit-linear-gradient(top, rgb(0, 0, 0) 0%, rgb(255, 255, 255) 10%);
    background: -o-linear-gradient(top, rgb(0, 0, 0) 0%, rgb(255, 255, 255) 10%);
    background: -ms-linear-gradient(top, rgb(0, 0, 0) 0%, rgb(255, 255, 255) 10%);
    background: -moz-linear-gradient(top, rgb(0, 0, 0) 0%, rgb(255, 255, 255) 10%);
    background: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgb(255, 255, 255) 10%);
    background-position: 0 -1px;
    background-size: 100% 5%;
}

#thermometer .progress {
    height: 0%;
    width: 100%;
    background: rgb(0, 178, 49);
    background: rgba(0, 178, 49, 0.8);
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 1em;
    border-bottom-right-radius: 1em;
}

#thermometer .progressZero {
    height: 0%;
    width: 100%;
    background: rgb(165, 242, 243);
    background: rgba(165, 242, 243, 0.8);
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 1em;
    border-bottom-right-radius: 1em;
}

#thermometer .progressPurple {
    height: 0%;
    width: 100%;
    background: rgb(81, 40, 135);
    background: rgba(81, 40, 135, 0.8);
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 1em;
    border-bottom-right-radius: 1em;
}

#thermometer .finalGoal {
    position: absolute;
    top: 0;
    display: none;
}

#thermometer .stopOne {
    position: absolute;
    top: 100%;
    display: none;
}

#thermometer .stopTwo {
    position: absolute;
    top: 75%;
    display: none;
}

#thermometer .stopThree {
    position: absolute;
    top: 50%;
    display: none;
}

#thermometer .stopFour {
    position: absolute;
    top: 25%;
    display: none;
}

#thermometer .amount {
    margin-left: 20px;
    display: inline-block;
    padding: 0px 5px 0px 70px;
    border-top: 1px solid black;
    font-weight: bold;
    color: #333;
}

#thermometer .progress .amount {
    padding: 0 70px 0 5px;
    position: absolute;
    border-top: 1px solid #00B231;
    color: #00B231;
    right: 0;
}

#thermometer .progressZero .amount {
    padding: 0 70px 0 5px;
    position: absolute;
    border-top: 1px solid #5757FF;
    color: #5757FF;
    right: 0;
    margin-right: 5px;
}

#thermometer .progressPurple .amount {
    padding: 0 70px 0 5px;
    position: absolute;
    border-top: 1px solid #512887;
    color: #512887;
    right: 0;
    margin-right: 5px;
}

.info {
    text-align: center;
}

.info img {
    width: 40vw;
    margin-top: 4vh;
}

.info2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.info2 p {
    margin-bottom: -10px;
}

.info2 img {
    width: 28vw;
    margin-top: 4vh;
}

.info2 a {
    margin: 8px;
    text-decoration: none;
    color: #000;
    border-bottom: 1px solid #000;
}

.info3 img {
    width: 20vw;
}

.goodDeeds {
    text-align: center;
}

.goodDeeds p {
    margin-bottom: 10px;
}

.manorLogo {
    margin: 4vh 0;
}

@media screen and (min-width: 480px) {
    .info img {
        width: 10vw;
        margin-top: 4vh;
    }
    .info2 img {
        width: 8vw;
        margin-top: 4vh;
    }
    #content {
        height: auto;
    }
    #header img {
        width: 10vw;
        padding: 1vh 0;
    }
}
