h1 {
    color: red;
    text-align: center;
    background-color: blue;
    font-family: Arial;
}

span {
    color: red;

}

body {
    background-color: beige;
}

.heading1 {
    color: green;
}

.heading2 {
    color: brown;
}

a {
    color: rgb(8, 198, 87);
}

button {

    background-color: #04AA6D;
    /* Green */
    border: none;
    color: white;
    padding: 10px 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 10px;
    transition-duration: 0.2s;
    transition-timing-function: ease-out;
}

button:hover{
    border-radius: 0px;
    scale: 105%;
    background-color: #1ece8d;
}

.buttons{
  margin-top: 20px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
}