
#technotink-map-container {
    position: relative;
    text-align: center;
    color: white;
}
#technotink-map-bg {
    width: 100%;
    height: auto;
    display: block;
}
.welcome-message {
    font-size: 2.5em;
    margin: 20px 0;
    color: #f0e6d2;
    font-family: "Cinzel", serif;
    text-shadow: 2px 2px 5px #000;
}
.logo {
    position: absolute;
    width: 200px;
    height: 200px;
    z-index: 10;
    transition: transform 0.3s ease;
}
.logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px gold);
}

#sound-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: url('../images/toggle-on.png') no-repeat center center;
    background-size: cover;
    width: 60px;
    height: 60px;
    z-index: 1000;
    cursor: pointer;
}
#sound-toggle.off {
    background-image: url('../images/toggle-off.png');
}
