body{
    font-family: 'Helvetica', sans-serif;
    background-color: #d7b7ff;
    text-align: center;
    justify-content: center;
    text-decoration: none;
}
b {
    font-weight: bold;
}
.content {
    max-width: 720px
}

h1 {
    font-size: 50px;
    font-weight: bold;
    margin: 20px 20px 20px 20px;
    display: block;
    height: 60px;
}

h2 {
    font-size: 30px;
    font-weight: bold;
    color: #999;
    margin: 20px 0px 0px 20px;
    height: 40px;
}

img {
    margin: 20px 20px 0px 20px;
    image-orientation: from-image;
}

table {
    margin-top: 40px;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Helvetica', sans-serif;
    font-size: 20px;
    color: darkslategrey;
}

figcaption {
   margin: 0px 20px 20px 20px;
}


.button {
    margin: 20px 20px 20px 20px;
    background-color: lightseagreen;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 12px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    transition: 0.3s;
}


.paragraph {
    display: inline-block;
    width: 600px;
}

.button:hover {opacity: 0.6}

/*
.buttons {
    width: 300px;
    display: inline-block;
    margin-top: -400px;
    margin-left: -85px;
}

*/

/*
.btn-group {
    position: fixed;
    top: 100px;
}
*/

td {
    vertical-align: top;
}

p {
    text-align: left;
    margin: 0px 0px 0px 20px;
    text-indent: 50px;
}

.btn-group button {
    margin: 5px 0px 0px 20px;
    background-color: rebeccapurple; /* Green background */
    color: white; /* White text */
    border-radius: 12px;
    font: 'Helvetica', sans-serif;
    padding: 10px 10px; /* Some padding */
    cursor: pointer; /* Pointer/hand icon */
    width: 250px; /* Set a width if needed */
    display: block; /* Make the buttons appear below each other */
/*    position: fixed;*/
}

.btn-group button:not(:last-child) {
    border-bottom: none; /* Prevent double borders */
}

/* Add a background color on hover */
.btn-group button:hover {
    background-color: mediumpurple;
}