body {
    margin: 0;
    padding: 0;
}

p {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

header {
    text-align: center;
    background-color: #9da1cd;
    padding: 20px;
}

.profile-picture {
    width: 140px;
    height: 140px;
    border-radius: 50%;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav li {
    display: inline;
    margin: 0 10px;
}

button {
    background-color: #979bc8;
    border-radius: 8px;
    border-width: 0;
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    font-family: "Haas Grot Text R Web", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    list-style: none;
    margin: 0;
    padding: 10px 12px;
    text-align: center;
    transition: all 200ms;
    vertical-align: baseline;
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
  }

.page {
    display: none;
    padding: 20px;
    margin-right: 10%;
    margin-left: 10%;
}

.page:not(.hidden) {
    display: block;
}

.image-placeholder {
    width: 300px;
    /* height: 150px; */
    /*border: 1px dashed #ccc;*/
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
    /* margin-right: 10%; */
    /* margin-bottom: 5%; */
    height: 100%;
    cursor: pointer;
    transition: cursor 0.3s ease;
}

.image-placeholder img {
    max-width: 100%;
    object-fit: cover;
}

.image-placeholder p {
    margin: 10px 0 0;
}

.image-concept {
    width: 300px;
    /* height: 150px; */
    /*border: 1px dashed #ccc;*/
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
    /* margin-right: 10%; */
    /* margin-bottom: 5%; */
    height: 100%;
    cursor: pointer;
    transition: cursor 0.3s ease;
}

.image-concept img {
    max-width: 100%;
    object-fit: cover;
    margin-left: 25%;
}

.empty-box {
    padding: 20px;
}

.hbox {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    box-sizing: border-box;
}

.column {
    flex: 1;
    display: flex;
    /*border: 1px dashed red;*/
    flex-direction: column;
    gap: 5px;
    /*padding: 10px;*/
    align-items: center;
}

footer {
    padding: 10px;
}

.logo {
    width: 200px;
    padding-right: 50px;
}

.poster {
    width: 250px;
    padding-right: 50px;
}

h2, h3 {
    text-align: center;
    font-family: Century;
}

.about {
    text-align: center;
    padding-left: 20%;
    padding-right: 20%;
    line-height: 25px;
}

.info {
    font-size: smaller;
}

a {
    padding-bottom: 20px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

/* Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    display: block;
    margin: auto;
    max-width: 80%;
    max-height: 80%;
    align-self: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
    border-radius: 8px; /* Optional: rounded corners */
    background-color: white; /* Optional: if the image is partially transparent */
}

.close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: white; /* Text color changed to white */
    font-size: 30px;
    font-weight: bold;
    text-align: center; /* Center the text horizontally */
    cursor: pointer;
    user-select: none; /* Prevent text selection */
    transition: color 0.3s ease; /* Smooth text color change */
}

.modal.open .close {
    color: white; /* Ensure the color is white when modal is open */
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}