body {
    background-color: indigo;
    color: white;
    font-family: 'Segoe UI';
    margin: 3%;
    text-align: center;
    align-content: center;
}

button {
    cursor: pointer;
    font-size: large;
    padding: 8px;
    padding-left: 20px;
    padding-right: 20px;
    border-style: none;
    border-radius: 10px;
    background-color: rgb(212, 53, 212);
    color: white;
    transition: transform 0.1s ease-in-out;
}

button:hover {
    background-color: rgb(134, 34, 134);
    transform: scale(1.1);
}

a {
    cursor: pointer;
}