body {
    background-color: #9aaf77;

}

h1, h2, h3, h4, h5, h6{
    font-family: "Comic Sans MS";
}

h1 {
    color: red;
}
h2 {
    color: orange;
}
h3 {
    color: yellow;
}
h4{
    color:green;
}
h5{
    color: blue;
}
h6{
    color: indigo;
}

.button{
    border-radius: 32px;
    border: darkolivegreen solid 4px;
    padding: 8px;
    background-color: rgba(85, 107, 47, 0.2);
    text-align: center;
    width: 200px;
    float: left;

    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}
.flexCollumn{
    display: flex;
    flex-direction: column;
    float: right;
}
.clear{
    clear: both;
}

p{
    text-align: center;
}