
button {
    transition: transform 100ms;
}
  
button:hover {
    transform: scale(1.1);
}

#forMenu {
    display: none;
}

#records,#rules {
    display: none;
    background-color: rgba(0,0,0,0.1);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

#forRecords {
    border-radius: 10px;
    padding: 5%;
    background-color: lightgray;
    width: 30%;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

#forRules {
    border-radius: 10px;
    padding: 5%;
    background-color: lightgray;
    width: 50%;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
