body {
    font-family: Arial, sans-serif;
    background-color: #cae8ea;
    padding: 20px;
}

.week-section {
    margin-bottom: 20px;
}

/* Style the word links as buttons */
.word {
    display: inline-block;
    padding: 8px 16px; /* Add some padding for button-like appearance */
    margin: 5px; /* Add spacing between buttons */
    border: none; /* Remove default link border */
    border-radius: 5px; /* Add rounded corners */
    background-color: #4CAF50; /* Green background color */
    color: white; /* White text color */
    text-decoration: none; /* Remove underline from link */
    cursor: pointer;
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

.word:hover {
    background-color: #45a049; /* Darker green on hover */
}

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

.modal-content {
    background: white;
    padding: 20px;
    max-width: 90%;
    text-align: center;
    position: relative;
}

.close {
    cursor: pointer;
    color: red;
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
}

video {
    width: 100%;
    max-width: 600px;
}

.modal-content img {
    /* Target images within the modal content */
    max-width: 90%;
    /* Limit the image width to 90% of its container */
    height: auto;
    /* Maintain aspect ratio by adjusting height automatically */
    display: block;
    /* Prevents image from overflowing its container */
    margin: 0 auto;
    /* Centers the image within its container */
}
