.tab {
    overflow: hidden;
    border-bottom: 2px solid #ccc;
    margin-bottom: 20px;
}

/* Tab buttons */
.tab button {
    background-color: inherit;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 10px 20px;
    transition: 0.3s;
    font-size: 16px;
}

.tab button:hover {
    background-color: #ddd;
}

.tab button.active {
    border-bottom: 3px solid #2c3e50;
    font-weight: bold;
}

/* Tab content */
.tabcontent {
    display: none;
}

.tabcontent.active {
    display: block;
}

model-viewer {
    width: 75vh;
    height: 75vh;
    margin: 20px;
}
.gallery {
    display: flex;
    flex-wrap: wrap;
}

img {
    height: 75vh;
    width: auto;
    object-fit: cover;
    margin: 10px;
    border: 2px solid #ccc;
    border-radius: 5px;
    transition: transform 0.3s, border-color 0.3s;
}