body {
    background-color: rgb(255, 167, 252);
    font-family: 'Times New Roman', serif;
    margin: 0;
    padding: 0;
}

.top-bar {
    height: 3cm;
    background-color: rgb(200, 128, 203);
    display: flex;
    justify-content: center;
    align-items: center;
}

h1 {
    font-size: 48px;
    text-align: center;
    color: rgb(69, 14, 69);
    margin: 0;
}

.center-img {
    display: block;
    margin: auto;
    width: 400px;
    height: auto;
}

.layout-table,
.layout-table td {
    border: 2px solid rgb(69, 14, 69);
    border-collapse: collapse;
}

.layout-table {
    margin: 1cm auto;
    text-align: center;
}

.button-cell {
    vertical-align: middle;
    text-align: center;
    width: 3.5cm;
}

button {
    font-family: 'Times New Roman', serif;
    width: 3cm;
    height: 9cm;
    font-size: 16px;
    border: none;
    background-color: rgb(69, 14, 69);
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
    margin: 10px 0;
}

button:hover {
    background-color: rgb(200, 128, 203);
    color: rgb(69, 14, 69);
}


.photo-row {
    display: flex;
    justify-content: center;
    gap: 1cm;
    margin-top: 2cm;
}

.photo-row img {
    width: 6cm;
    height: auto;
    border: 2px solid rgb(69, 14, 69);
}

.photo-caption {
    color: rgb(69, 14, 69);
    margin-top: 0.5cm;
    font-size: 16px;
    text-align: center;
}

.back-button {
    text-align: center;
    margin-top: 2cm;
}