.content{
    max-width: 1240px;
}
.view {
    display: flex;
    flex-direction: row;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
}

h4{
    font-size: 2.5rem;
    margin-block-start: 0;
    width: calc(100% - 100px);
    max-width: 1240px;
}

.content  .left {
    width: 25%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.content  .middle {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.middle > img {
    width: 100%;
    height: 100%;
}

.content  .right {
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.content .item {
    width: 60%;
    aspect-ratio: 6/3.5;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: auto;
    border: solid 1px black;
    border-bottom: solid 5px var(--primary-color);
    cursor: pointer;
    transition: all 0.3s;
}

.content .item:hover {
    border: solid 1px rgb(97, 97, 97);
    border-bottom: solid 5px var(--primary-color);
    background-color: var(--primary-color);
    color: #ffffff;
    cursor: pointer;
}

.content .item img {
    margin-top: 25px;
    width: 23%;
}

/* Help Modal */
.modal {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 100001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.781);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 8px;
}

.modal-content h2 {
    font-size: 1.5rem;
    margin-block-start: 0;
}

.modal-content p {
    font-size: 1rem;
}

.modal-content button {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 10px;
}

.modal-content button:hover {
    background-color: #0d6efd;
}

.modal-content button.close {
    background-color: #dc3545;
}

.modal-content button.close:hover {
    background-color: #c82333;
}

table{
    border-collapse: collapse;
    width: 100%;
  }
  th, td{
    border: 1px solid black;
    padding: 10px;
    vertical-align: top;
  }