body {
    font-family: 'Times New Roman', Times, serif;
    background-color: rgb(214, 236, 255);
}
.hubheader{
    text-align:center;
    margin-top: 3%;
    font-style: italic;
}
.hubheaderlow{
    text-align:center;
    font-size: 0.5em;
    color: rgb(146, 180, 213);
}
/*hubnav*/
.hubnav {
    padding: 5% 35%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px;
    justify-items: center;
}
.hubnav img {
    margin: 0;
    display: flex;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
}
.hubnav img:hover {
    transform: scale(1.05);
    filter: blur(2px) brightness(0.8);
}
/* Hub Home */
.hubhome {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hubhome-text {
    position: absolute;
    color: rgb(255, 230, 255);
    text-shadow: 2px 2px 10px black;
    pointer-events: none;
    opacity: 0;
}
.hubhome:hover .hubhome-text{
    opacity: 1;
}
/* Hub Art */
.hubart {
    display: flex;
    align-items: center;
    justify-content: center;
    position:relative;
}
.hubart-text {
    position: absolute;
    color: rgb(255, 244, 199);
    pointer-events: none;
    opacity: 0;
}
.hubart:hover .hubart-text{
    opacity: 1;
}
/* Hub music */
.hubmusic {
    display: flex;
    align-items: center;
    justify-content: center;
    position:relative;
}
.hubmusic-text {
    position: absolute;
    color: rgb(166, 255, 158);
    pointer-events: none;
    opacity: 0;
}
.hubmusic:hover .hubmusic-text{
    opacity: 1;
}

/* 3D Viewer */
.gallery-3d {
    background-color: rgb(214, 236, 255);
    text-align: center;
    padding: 2%;
}

.gallery-3d h1 {
    color: rgb(51, 102, 153);
    margin-bottom: 2%;
}

.gallery-3d a {
    color: rgb(51, 102, 153);
    text-decoration: none;
    margin-bottom: 2%;
    display: inline-block;
}

.gallery-3d a:hover {
    text-decoration: underline;
}

.art {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2%;
    flex-wrap: wrap;
    padding: 2% 10%;
}

model-viewer {
    width: 600px;
    max-width: 100%;
    height: 600px;
    background-color: rgb(240, 245, 250);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}