.randomButton {
    cursor: pointer;
    padding: 10px 20px;
    background-color: white;
    color: #F2962F;
    border: none;
    border-radius: 15px;
    font-size: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.randomButton:hover {
    background-color: #F2962F;
    color: white;
}
