/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: black;
  color: white;
  font-family: Arial,sans-serif;
}

a {
  color:#5991ff;
}
#soweliring a {
  text-decoration:none;
}
img {
  max-width:100%;
}
.ring {
  border-style:solid;
  border-width:3px;
  border-radius:10px;
  border-color:#2f95cc;
  display: flex;
  justify-content: space-around;
  width: 16em;
  padding:5px;
  font-family:Atkinson;
}
.gar {
  background-color: #2a282b;
  border: 5px solid white;
  border-radius: 20px;
  padding:15px;
  width: min(1000px, 90%);
  margin:30px auto;
}
.header {
  display:flex;
  gap:50px;
  align-items:center;
}
.lii {
  width:50%;
  border-radius:10px;
}
@font-face {
  font-family: "nasin-nanpa";
  src:
    url("./nasin-nanpa-4.0.2-UCSUR.otf") format("opentype");
}
@font-face {
  font-family: "Tratex";
  src:
    url("./tratex.ttf") format("truetype");
}
@font-face {
  font-family: "sjKB";
  src:
    url("./sitelen juna Kulusepelipowi Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Atkinson";
  src:
    url("./atk.ttf") format("truetype");
}
.sp {
  font-family: "nasin-nanpa";
}
.sj {
  font-family: "sjKB";
  font-size: 2em;
}
.tratex {
  font-family: "Tratex";
}
#clock {
  font-family: "Atkinson";
}
.scroll-container {
  width: 100%;
  height: 50px;  overflow: hidden;
  position: relative;
  background-color: #301940;
  border: 2px solid #919191;
  border-radius: 10px;
  display:flex;
  align-items:center;
}
.scroll-text {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: scroll-left 15s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media only screen and (max-width: 850px) {
  .header {
    flex-direction: column;
    gap:10px;
  }
} 