.backButton{
    margin-top: 30px;
    margin-bottom: 20px;
    border-radius: 20px;
    height: 30px;
    width: 150px;
    text-decoration: none;
    margin-right: 30px;
}
.backButton:hover {
    background-color: darkgrey; /* Green */
    color: white;
    cursor: pointer;
    transition-duration: 0.4s;
}

.backButton a, .backButtonend a{
    text-decoration: none;
    color: black;
}
.backtostart{
    padding-top: 15vh;
}
.backButtonend{
    display: flex;
    width: 150px;
    height: 40px;
    border-radius: 10px;
    color: white;
    background-color: lightgray;
    border: 2px solid darkgray;
    transition: 0.3s;
    align-items: center;
    justify-content: center;
    margin-top: 15vh;
}
.backButtonend:hover{
    transform: scale(1.1);
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);

}