:root{
    --bg: #0f172a;         /* slate-900 */
    --bg-accent: #0b1229;  /* deeper navy */
    --text: #ffffff;       /* light gray text */
    --brand: #0ea5e9;      /* sky-500 */
    --brand-2: #22d3ee;    /* cyan-400 */
    --card: rgba(255,255,255,0.05);
    --ring: rgba(14,165,233,.35);
  }



html, body {
    margin: 0;
    height: 100%;
    width: 100%;
    background:
      radial-gradient(1200px 700px at 80% -10%, rgba(34,211,238,.18), transparent 60%),
      radial-gradient(900px 600px at -10% 20%, rgba(14,165,233,.18), transparent 60%),
      linear-gradient(180deg, var(--bg), var(--bg-accent));
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, sans-serif;
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  a {
    color: white;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }

#divContainer {
    position: relative;
    width: 85%;
    margin: 15px auto;

}

#divMap {
    height: 700px;
    z-index: 0;
    border-radius: 18px;
}


#divWebButtons {
    position: absolute;
    bottom: 30px;
    right: 10px;
    text-align: right;
    width: 80px;
    z-index: 1000;
}

.btnLayer {
    margin-top: 5px;
    opacity: 0.55;
    border: 4px solid lightgray;
    border-radius: 15px;
    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
}


#btnURL {
    display: none;
}

#btnGoogle {
    display: none;
}

#btnTA {
    display: none;
}

#btnChatGPT {
    display: none;
}


#txtSiteName {
    left: 80px;
    right: 80px;
    margin-inline: auto;
    width: fit-content;
    position: absolute;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: #0f172a;   
    bottom: 20px;
    z-index: 1000;
}

#divSelectedTypes {
    position: absolute;
    top: 15px;
    z-index: 1;
    white-space: break-spaces;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: #085536;
    font-size: 22px;
    text-align: center;
    left: 20px;
    right: 50px;
}

#divAtt {
    font-size: 10px;
    position: absolute;
    right: 9%;
    margin-left: 30px;
    color: white;
}

#divTitle {
    position: absolute;
    margin-top: 30px;
    width: 100%;
    text-align: center;
    font-size: 24px;
    color: #0f172a;   
    z-index: 1000;
}


@media only screen and (min-width: 1200px) {
    #divSiteButtons {
        left: 20px;
    }
    .btnLayer {
        width: 70px;
        height: 70px;
    }
    #txtSiteName {
        font-size: 30px;
    }
    #divTitle{
        font-size: 30px;
    }
}

@media only screen and (max-width: 1200px) {
    #txtSiteName {
        font-size: 28px;
    }
    #divTitle{
        font-size: 28px;
    }
    #divSiteButtons {
        left: 10px;
    }
    .btnLayer {
        width: 60px;
        height: 60px;
    }
}

@media only screen and (max-width: 1000px) {
    #txtSiteName {
        font-size: 26px;
    }
    #divTitle{
        font-size: 26px;
    }
    #divSiteButtons {
        left: 5px;
    }
    #divOwner {
        right: 5px;
    }
    #divOwner {
        right: 5px;
    }
    #divWebButtons {
        right: 5px;
    }
    .btnLayer {
        width: 60px;
        height: 60px;
    }
    #divSelectedTypes {
        font-size: 18px;
    }
}

@media only screen and (max-width: 800px) {
    #txtSiteName {
        font-size: 24px;
    }
    #divTitle{
        font-size: 24px;
    }
    #divSelectedTypes {
        font-size: 17px;
    }
    .btnLayer {
        width: 50px;
        height: 50px;
    }
}

@media only screen and (max-width: 500px) {
    #txtSiteName {
        font-size: 17px;
    }
    #divTitle{
        font-size: 17px;
    }
    #divSelectedTypes {
        font-size: 16px;
    }
}
