/* Reset default body and html margins and padding */
html, body {
    font-family: Futura, Helvetica, Arial, sans-serif;
    font-weight: lighter;
    background-color: #000;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Ensures no scrolling */
}

/* Ensure the Spline viewer takes up the full viewport */
spline-viewer {
    display: block;
    width: 100%;
    height: 100%;
    border: none; /* Remove any potential border */
}

.tag1, .tag2 {
    font-size: 28px;
    line-height: 1.1;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    position: absolute;
    top: 120pt;
    left: 0;
    right: 0;
    z-index: 1000;
    min-width: 300pt;
}

.tag2 {
    color: rgba(0, 0, 0, 0.6);
    top: 170pt;
}

.getInTouchButton {
    color: #EEE;
    font-size: 18px;
    text-decoration: none;
    text-align: center;
    
    position: absolute;
    padding: 10pt 20pt 13pt 20pt;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: inline-block;
    min-width: 75pt;

    border-radius: 20pt;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    backdrop-filter: blur(5px);
    background: rgba(85, 85, 85, 0.2);
    transition: background-color 0.25s;
}
.getInTouchButton:hover {
    background-color: rgba(85, 85, 85, 0.4); /* Slightly more opaque on hover */
}

