@font-face {
    font-family: "Normal Grotesk";
    src: url(/Normal-GroteskNormal.ttf) format("truetype");
}

p {
    font-size: 18px;
}

html, body
{
    height: 100%;
    margin: 0;
    padding: 0px;
    background: hsla(360, 0%, 13%, 1); 
    font-family: "Normal Grotesk", sans-serif;
    color: rgb(255 239 128);
}

.viewer {
    overflow: hidden;
}

canvas {
  border: 1px solid gray;
  margin: 10px;
}

#btn-holder {
    visibility: hidden;
    position:fixed;
    bottom:30px;
    right:0px;
    height:20px;
    width:350px;
    font-family: Courier;
    color: hsla(360, 0%, 100%, 1);
}

a {
    color: #fff;
}

.container {  
  display: grid;
  grid-template-columns: 1fr 40% 1fr;
  grid-template-rows: 400px 100%;
  gap: 20px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    ". titlearea ."
    ". contentarea .";
  min-width: 300px;
}

.titlearea { 
  grid-area: titlearea;
  position: relative;
}

.title {
  position: absolute;
  bottom: 0;
  left: 40%;
}

.login {
  position: absolute;
  bottom: 0;
  right: 0;
}

.contentarea { grid-area: contentarea; }

.globe {
  border: 2px solid rgb(255 239 128);
  border-radius: 50%;
  height: 140px;
  left: 50%;
  overflow: hidden;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
}

.globe svg {
  animation: rotation 5s linear 0s infinite;
}

.globe svg path {
  stroke: rgb(255 239 128);
}

@keyframes rotation {
  from {
    transform: translateX(0);
  }
  from {
    transform: translateX(-50%);
  }
}

