@font-face {
  font-family: 'Pretendard-Regular';
  src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff')
    format('woff');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Pretendard-Bold';
  src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Bold.woff')
    format('woff');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'SBAggroB';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2108@1.1/SBAggroB.woff')
    format('woff');
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: 'Pretendard-Regular';
  font-size: 15px;
  background-color: rgb(35, 33, 33);
  width: 100%;
  height: 100vh;
  line-height: 1;
}
h1 {
  font-size: 40px;
}
h2 {
  font-size: 30px;
}
h3 {
  font-size: 20px;
}
h5 {
  font-size: 20px;
}
.wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  /* padding: 20px; */
}
.forecast {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 70%;
  padding: 15px 0px 15px 30px;
  background-color: rgb(35, 33, 33);
}

.screen {
  position: relative;
  background: url('../src/img/mt.png') no-repeat center;
  width: 100%;
  height: 1000px;
  /* height: 300px; */
  display: flex;
  flex-direction: column;
  /* padding-left: 30px; */
  /* padding: 30px; */
  align-items: center;
  object-fit: contain;
}
.seoul {
  width: 100%;
  height: fit-content;
}

.line {
  z-index: 999;
  bottom: 30px;
  position: absolute;
  display: flex;
  justify-content: center;
  width: 100%;
  height: fit-content;
  line-height: 1.3;
  letter-spacing: 1.2em;
  /* padding: 0 4em; */
}
.line__text {
  font-size: 1.1em;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.circle {
  font-family: 'SBAggroB';
  justify-content: center;
  /* width: 1em; */
  background-color: rgb(27, 24, 24);
  height: 2em;
  border-radius: 50%;
  border: 2px solid #5696e6;
  color: #fff;
  text-align: center;
  /* margin: 0.1em; */
  padding: 0.5em 0 0 1em;
}

#date {
  font-size: 30px;
  font-weight: 800;
  width: 100px;
  position: absolute;
  z-index: 999;
  top: 20px;
  left: 20px;
  color: rgb(255, 234, 0);
  letter-spacing: 0.1em;
}
#live {
  font-size: 30px;
  font-weight: 800;
  width: 80px;
  position: absolute;
  z-index: 999;
  top: 20px;
  right: 20px;
  color: rgb(255, 0, 81);
  letter-spacing: 0.1em;
}
.descWrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30%;
  padding: 30px;
  background-color: rgb(35, 33, 33);
}
.desc {
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 1000px;

  overflow-y: scroll;
  background-color: yellow;
}
.desc h5 {
  font-size: 30px;
  font-weight: 400;
  width: 400px;
  padding: 10px;
  line-height: 1.5em;
}
.main {
  width: 400px;
  padding: 30px 0 0 0;
  height: min-content;
}
ul.stoneImg {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
ul.stoneImg li {
}
ul.stoneImg li img {
  width: 400px;
  margin-bottom: 10px;
}

#anchor {
  position: relative;
  /* left: 50%; */
  top: -20px;
  margin-left: -25px;
  z-index: 9;
}

.rope > .rope {
  font-size: 8px;
  position: absolute;
  z-index: -1;
  background-color: rgb(71, 56, 56);
  top: 20px;
  left: 24px;
  width: 2px;
  height: 35px;
  border-radius: 50%;
  backface-visibility: hidden;
  transform-origin: top center;
  animation: pendulum 5s infinite;
  animation-timing-function: ease-in-out;
}

.rope > .rope > .rope {
  left: 0;
}

#stone {
  position: absolute;
  background-color: transparent;
  left: -80px;
  top: -70px;
  transform: rotateZ(38deg);

  animation-timing-function: ease-out;
}
#stone:after {
  position: absolute;
  left: 0px;

  top: 0px;

  display: block;
  width: 90px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

@keyframes pendulum {
  0% {
    transform: rotateZ(0.1deg);
  }
  50% {
    transform: rotateZ(-0.1deg);
  }
  100% {
    transform: rotateZ(0.1deg);
  }
}
