.body {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    }

.masthead {
    font-family: Verdana, sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: rgb(15, 15, 16);
    padding-top: 40px;
    padding-bottom: 20px;
    line-height: 1;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;   
    width: calc(100% - 100px); 
    margin: 0 50px; 
    box-sizing: border-box; 
}

.masthead::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50px; 
    right: -50px; 
    height: 26px;
    background-color: red; 
}
.masthead a {
    text-decoration: none;
    color: black;
    }
.masthead a:hover {
    color:red;
    }
    
.item {
    font-family: Verdana, sans-serif;
    font-size: 15px;
    font-weight: bold;
    padding: 10px 0px 0px 50px;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.item a {
    text-decoration: none;
    color: black;
    }
.item a:hover {
    color:red;
}

.statement {
    font-family: Verdana, sans-serif;
    font-size: 13px;
    line-height: 16pt;
    border-top: 1px solid #000;
    margin: 20px 50px 20px 50px;
}

.statement a {
    text-decoration: none;
    color: black;
    }
.statement a:hover {
    color:red;
}

.description {
    font-family: Verdana, sans-serif;
    font-size: 13px;
    padding-top: 25px;
    padding-bottom: 25px;
    margin: 20px 50px 20px 50px;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.description a {
    text-decoration: none;
    color: black;
    }
.description a:hover {
    color:red;
}

.container {
    display: flex;
    justify-content: center;
    margin: 20px 50px;
    max-width: 100%;
    overflow-x: auto; 
}

.column {
    font-family: Verdana, sans-serif;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.column a {
    color: black;
    }
.column a:hover {
    color:red;
    }

.index {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 200px;
}

.image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.image img {
    height: 32vw; /* Set fixed height */
    width: auto; /* Adjust width automatically to maintain aspect ratio */
}
    
.row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); 
    grid-gap: 10px;
    font-family: Verdana, sans-serif;
    font-size: 13px; 
    color: rgb(0, 0, 0);
    text-align: center;
    text-decoration: none;
    width: 100%;
    }

    .row img {
        display: block;
        max-width: 100%; 
        object-fit: cover;
    }
    
ul {
    list-style-type: none;
}

.copyright {
    font-family: Verdana, sans-serif;
    font-size: 12px;
    text-align: right;
    padding-bottom: 10px;
}


.columnContainer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px;
    margin: 30px;
    max-width: 1500px;

}

.column {
    flex: 0 1 auto;
    padding: 20px;
    margin-left: 30px;
    box-sizing: border-box;
    border: none;
    border-radius: 5px;
}

.column:first-child {
    margin-left: 0; /* No margin on the left side of the first column */
}

.column:last-child {
    margin-right: 0; /* No margin on the right side of the second column */
}


.h1 {
    font-family: Verdana, sans-serif;
    font-size: 13px;
    line-height: 16pt;
    margin: 20px 50px 20px 50px;
}

.h2 {
    font-family: Verdana, sans-serif;
    font-size: 13px;
    font-weight: bold;
}


.frame {
    position: relative;
    width: 700px;
    height: 700px;
    overflow: hidden; /* Hide overflow to simulate crossing boundaries */
    border: none; /* Optional: for visual boundary */
    margin: 20px auto; /* Center the frame */
}

