body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}
#warrantyMain {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#warrantyBtns {
    width: 90vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 10vh;
}

.jumpBtn {
    background-color: #343434;
    color: #FFFFFF;
    text-decoration: none;
    font-family: "Encode Sans Expanded", sans-serif;
    font-weight: 300;
    font-size: 1.2vw;
    font-style: normal;
    padding: 30px;
    width: 90vw;
    border: none;
    box-shadow: 2px 2px 5px #D9D9D9;
    cursor: pointer;
    align-self: center;
    margin: 10px;
}

.jumpBtn:hover {
    color: #C61211;
    box-shadow: 2px 2px 10px #C61211;
}

.warrantyBody {
    width: 90%;
    background-color: #FFFEFE;
    margin-bottom: 5vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 3rem;
}

.warrantyHeader {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 300;
    font-style: normal;
    color: #C61211;
    font-size: 2.8vw;
    margin: 5% 0% 2% 0%;
}

.warrantyPar {
    padding: 0% 7%;
    text-align: justify;
    font-family: "Encode Sans Expanded", sans-serif;
    font-weight: 150;
    font-size: 1.2vw;
    font-style: normal;
    align-self: flex-start;
}

@media screen and (max-width: 845px) {
    #warrantyBtns {
        margin-bottom: 5vh;
        justify-content: center;
    }

    .jumpBtn {
        font-size: 3vw;
        box-shadow: 2px 2px 3px #D9D9D9;
}
}

@media screen and (max-width: 500px) {
    .jumpBtn {
        padding: 20px;
    }
}