body {
    margin: 0;
    display: flex;
    flex-direction: column; /* Stack sections vertically */
    height: 100vh; /* 100% of the viewport height */

    background-color: #7710a080;
    color: #0011ff80; 
}
  
.header-section {
    width: 100%; /* Full width of the body */
    height: 50px;
    background-color: #eae2e280;
    color: #eae2e280; 
}

.figure-container {
    display: flex;
    flex: 1;
    flex-direction: column; /* Stack elements vertically */
    align-items: center;
    margin: 1rem 0;
}

.figure-container img {
    max-width: 100%; /* Shrink images to fit their container */
    border: 5px solid #000000;
}

.title {
    align-items: center;
    text-align: center; /* Center elements horizontally */
    font-size: large;
}

.container {
    /* padding: 30px; */
    margin: 10px auto;
    background-color: #eae2e280;
    border: 10px solid #000000;
    align-items: center;
    text-align: center; /* Center elements horizontally */
}

.button {
    display: block;
    margin: 20px auto;
    padding: 10px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}