body {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
   /* background-color: rgb(49, 12, 12); */
   background-image: url(images/table.jpg);
   background-repeat: no-repeat;
   background-size: cover;
   font-size: x-large;
}

.container {
   background: #1E5C3A;
   text-align: center;
   margin: auto;
   width: 500px;
   height: 500px;
   border: 5px solid goldenrod;
   border-radius: 20%;
}

h1 {
    color: goldenrod;
}

 p {
    color: white;
    font-weight: bold;
 }

 #message-el {
    font-style: italic;
 }

 .buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
 }

 button {
    color: #016f32;
    width: 200px;
    background-color: goldenrod;
    font-weight: bold;
    padding: 10px;
    border: none;
    border-radius: 5px;
    border-color: #016f32;
    margin: 3px;
 }