.historyMenu {
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 600px;
    padding: 20px;
    background-color: black;
    border: 2px solid white;
    border-radius: 10px;
}

.historyMenu h1 {
    text-align: center;
    font-size: 60px;
    margin-bottom: 10px;
    color: #9C4A00;
    -webkit-text-stroke: 1px white;
}

.historyMenu p {
    text-align: justify;
    font-size: 20px;
    line-height: 1.5;
    color: white;
}

.historyMenu button {
    position: relative;
    cursor: pointer;
    width: 420px;
    height: 40px;
    margin: 10px 0;
    margin-left: 15%;
    font-family: 'upheaval', sans-serif;
    font-weight: 100;
    font-size: 30px;
    /*border: 2px solid rgba(255, 255, 255, .2);*/
    border: 1px solid white;
    border-radius: 40px;
    background-color: #9C4A00;
    color: white;
    -webkit-text-stroke: 1px black;
}

.historyMenu button:hover {
    background-color: #3fa932;
}