body {
    background-repeat: no-repeat;
    background-attachment: fixed; 
    background-size: 100% 100%;
    width: 60%;
    height: 60%;
    margin: auto;
    font-family: sans-serif;
    background-color: black;
    color: white;
    margin-top: 10px;
}

main {
    border: solid thin white;
    border-radius: 5px;
    padding: 0.5em;
    background-color: black;
    color: White;
}

h1 {
  text-align: center;
  color: White;
}

p {
  text-align: center;
  color: White;
}

.page-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 10vh;
  margin: 0;
  padding: 20px;
}

.thumbnail-container {
    width: 88px;
    height: 31px;
    overflow: hidden;
    border-radius: 3px;
    margin-left: auto;
    margin-right: auto;
}

.thumbnail-container img {
    width: 100%;
    height: 100%;
    padding: 20;
    object-fit: cover;
    object-position: center;
}

.button-container {
    display: flex;
    flex-wrap: wrap;
    gap: 100px;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

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

.button-label {
    margin-bottom: 5px;
    font-weight: bold;
    color: white;
}

.button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: Gray;
    color: white;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #0056b3;
}



