body {
    background-image: url(redsky.png);
    background-repeat: repeat;
}

.main {
    display: flex;
    width: 75%;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: auto;
}

.block {
    background-color:rgb(199, 86, 86);
    width: 99%;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    border-style: inset;
    border-color: rgb(182, 103, 103);
    border-width: 5px;
}
.block > * {
    padding-left: 10px;
    padding-right: 10px;
}

#body2, #body3, #body4 {
    width: 48% !important;
}

#body5 {
    border: 0;
    background-color:rgba(182, 103, 103, 0);
    padding: 0;
    margin: 0;
    margin-top: 10px !important;
}

.favorites {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: auto;
    width: 95%;
}

.favorite-block {
    background-color:rgb(173, 74, 74);
    width: 31%;
    border-style: outset;
    border-color: rgb(182, 103, 103);
    border-width: 5px;
    padding: 4px;
}

.favorite-block > h1 { 
    text-align: center;
}

.favorite-block > a {
    display: block;
    margin: auto;
    text-align: center;
}

.favorite-block > img {
    display: block;
    margin: auto;
    max-width: 90%;
    border-style: solid;
    margin-bottom: 15px;
}

#favorite-text {
    display: block;
    margin: auto;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

#home-button {
    float: right;
}

#center-image {
    display: block;
    margin: auto;
}

#list > p {
    padding: 0;
    margin: 0;
}

#bullet {
    max-width: 20px;
}

#bullet-text {
    height: 15px;
    line-height: 15px;
    position: relative;
    bottom: 6px;
}

@media only screen and (max-width: 937px) {
    .main {
        width: 95%;
    }
    #body2, #body3 {
        width: 100% !important;
        padding: 0;
    }
    .favorite-block {
        width: 100%;
    }
    #favorite-text {
        font-size: 16px;
    }
}

.disclaimer {
    text-align: center;
    font-size: 14pt;
}