@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

:root {
  --player-width: 640px;
  --focus-color: rgb(15, 107, 220);
  --short-color: rgb(6, 215, 117);
  --long-color: rgb(188, 17, 208);
}

html,
body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  font-family: 'Pretendard';
}

body>main {
  padding: 0;
  width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1,
h2,
h3 {
  margin: 0;
}

main>#video-player {}

#타이머뷰 {
  width: var(--player-width);
  margin: 0;
  padding: 3px;
  color: #000;
  font-size: 1.3rem;
  display: flex;
  flex-direction: row;
}

#타이머뷰>* {
  width: 100%;
  text-align: center;
}

#타이머뷰.Focus {
  background-color: var(--focus-color);
}

#타이머뷰.ShortBreak {
  background-color: var(--short-color);
}

#타이머뷰.LongBreak {
  background-color: var(--long-color);
}

#단계 {
  width: var(--player-width);
  display: flex;
  flex-direction: row;
  justify-content: stretch;
}

#단계>* {
  flex: 1 1 auto;
  color: black;
  padding: 3px;
  width: 100%;
}

#단계 .focus {
  background-color: var(--focus-color);
}

#단계 .short-break {
  background-color: var(--short-color);
}

#단계 .long-break {
  background-color: var(--long-color);

}