@charset "UTF-8";
/* CSS Document */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "AcuminVariableConcept";
  src: url("fonts/AcuminVariableConcept.otf") format("opentype");
}
@font-face {
  font-family: "Commune NuitDebout";
  src: url("fonts/Commune NuitDebout.otf") format("opentype");
}
@font-face {
  font-family: "ABCGravity-Wide-Trial";
  src: url("fonts/ABCGravity-Wide-Trial.otf") format("opentype");
}

body {
  font-family: "AcuminVariableConcept", sans-serif;
  margin: 0;
  overflow: hidden;
  background: white;
}

html, body {
  overflow: hidden; 
  touch-action: none;
}


.top-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 2vh;  
  background-color: rgb(243, 0, 0);
  overflow: hidden;
  display: flex;
  align-items: center;
  z-index: 1000;
}

.scrolling-wrapper {
  display: flex;
  white-space: nowrap;
}

.scrolling-text {
  display: inline-block;
  white-space: nowrap;
  color: rgb(201, 201, 201);
  font-family: "ABCGravity-Wide-Trial", sans-serif;
  font-size: 0.7rem;
}

@media (max-width: 1024px) {
  .scrolling-text {
  
    font-size: 0.5rem;
  }
}




#move {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "AcuminVariableConcept", sans-serif;
  font-weight: 400;      
  font-size: .8rem;       
  pointer-events: none;   
  text-align: center;
}


.trace {
  position: absolute;
  pointer-events: none;
  width: 10rem;  
  height: auto;  
  transform: translate(-50%, -50%);
  user-select: none;
}

@media (max-width: 1024px) {
  .trace {
    width: 8rem;       
  }
}


#world-clock {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background-color: black;
  display: flex;
  flex-wrap: wrap;              
  justify-content: space-between;
  align-items: center;
  color: white;
  font-weight: 400;
  font-size: 0.8rem;
  z-index: 1000;
  padding: 0.15rem 0.2rem;     
}

#city-time {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-left: 0.3vw;
}

.weather-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-right: 4px;
}

#deepclass-footer-right {
  display: flex;             
  flex-wrap: wrap;              
  margin-left: auto;            
}

#deepclass-footer-right ul,
#deepclass-footer-right li,
#deepclass-footer-right p {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  list-style: none;
  position: static;            
}

#deepclass-footer-right p,
#deepclass-footer-right a {
  margin: 0 3px;
  color: white;
  font-size: 0.8rem;
  white-space: nowrap;
}

#deepclass-footer-right a {
  text-decoration: none;
  color: rgb(248, 255, 38);
}

#deepclass-footer-right a:hover {
  text-decoration: underline;
}
