body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    text-align: center;
    margin: 20px 0;
}

.container {
    display: flex;
    justify-content: space-around;
    padding: 20px;
}

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

.large-image-panel img {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}

#readNowButton {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

/* Style the form */
#nameForm {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center items horizontally */
    justify-content: center; /* Center items vertically */
}

/* Style the form elements if needed */
#nameForm input {
    margin-bottom: 10px; /* Add some space between the inputs */
    padding: 10px;
    width: 200px; /* Fixed width for inputs */
}

/* Style the button */
#nameForm button {
    padding: 10px 20px;
}

/* Style the message */
#messageContainer {
    align-items: center; /* Center items horizontally */
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
}


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

.small-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.small-image-panel img {
    width: 100px;
    height: 150px;
    object-fit: cover;
    border: 1px solid #ddd;
}

.video-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

video {
    width: 80%;
    height: 80%;
}

.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: red;
    color: white;
    border: none;
    padding: 10px;
    font-size: 20px;
    cursor: pointer;
}
