.btnLeft {
    border-radius: 9px;
    background-color: #36304a;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 18px;
    padding: 15px;
    width: 140px;
    transition: all 0.5s;
    cursor: pointer;
    margin-bottom: 5px;
}

.btnLeft span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.btnLeft span:after {
    content: '\00ab';
    position: absolute;
    opacity: 0;
    top: 0;
    left: -20px;
    transition: 0.5s;
}

.btnLeft:hover span {
    padding-left: 25px;
}

.btnLeft:hover span:after {
    opacity: 1;
    left: 0;
}

.btnRight {
    border-radius: 9px;
    background-color: #36304a;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 18px;
    padding: 15px;
    width: 140px;
    transition: all 0.5s;
    cursor: pointer;
    margin-bottom: 5px;
}

.btnRight span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.btnRight span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

.btnRight:hover span {
    padding-right: 25px;
}

.btnRight:hover span:after {
    opacity: 1;
    right: 0;
}

.contentDiv {
    border-radius: 9px;
    background-color: #36304a;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 18px;
    padding: 15px;
    min-width: 230px;
    min-height: 200px;
    transition: all 0.5s;
    cursor: pointer;
    margin-bottom: 5px;
}

.revisionDiv {
    border-radius: 9px;
    background-color: #36304a;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 18px;
    padding: 15px;
    min-width: 230px;
    min-height: 200px;
    transition: all 0.5s;
    cursor: pointer;
    margin-bottom: 5px;
}

.plate {
    width: 100px;
    display: inline-block;
}

.header {
    text-align: center;
    padding-top: 10px;
}

p {
    padding-top: 1px;
}

.plate:hover {
    box-shadow: inset 0 0 0 3px #c850c0;
}

@media only screen and (max-width: 768px) {
    .contentDiv {
        width: 100%;
    }
}