* {
  box-sizing: border-box;
  border: none;
  font-family: var(--font-main);
  margin: 0;
  padding: 0;
  vertical-align: baseline; }

html {
  scroll-behavior: smooth; }

body {
  color: var(--twitter-blue);
  background-color: #FFF; }

.wrap {
  margin: 0 auto;
  max-width: 1200px;
  padding: 20px 120px; }

.home__add-tweet {
  background-color: var(--twitter-blue);
  border: 2px solid transparent;
  color: white;
  cursor: pointer;
  display: block;
  font-size: 1rem;
  font-weight: bolder;
  margin: 10px auto;
  text-align: center;
  transition: all .15s ease-in;
  padding: 10px 1rem;
  width: 200px; }

.home__add-tweet:hover {
  background-color: white;
  border: 2px solid var(--twitter-blue);
  color: var(--twitter-blue);
  transition: all .15s ease-in; }

.home__add-tweet:focus {
  outline: none; }

.home__text {
  text-align: center; }

.header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 50px auto;
  text-align: center; }

.header__title {
  font-size: 1rem;
  color: var(--twitter-blue);
  font-weight: normal; }

.header__byline {
  color: var(--faded);
  font-size: 1rem;
  font-weight: lighter; }

.header__link {
  border-bottom: 2px solid var(--twitter-blue);
  color: var(--faded);
  text-decoration: none;
  padding: 0 2px 4px 2px;
  transition: all .15s ease-in; }

.header__link:hover {
  color: var(--black);
  transition: all .15s ease-in; }

@media (max-width: 700px) {
  .wrap {
    padding: 10px; } }

:root {
  --black: #000000;
  --white: #FFFFFF;
  --gold: #F7C500;
  --faded-gold: #f7c596;
  --faded: rgb(148, 148, 148);
  --gray: #636363;
  --grey: #636363;
  --copy-color: #000;
  --border-light: #E8E8E8;
  --twitter-blue: rgb(27, 149, 224);
  --font-decorative: "Bebas Neue", Arial, sans-serif;
  --font-main: "Noto Sans HK", Arial, sans-serif;
  --font-copy: "Noto Sans HK", Arial, sans-serif;
  --copy-size: 1.15rem;
  --very-small: .8rem;
  --small: 1rem;
  --med: 1.3rem;
  --big: 3rem;
  --very-big: 4.5rem;
  --huge: 5rem;
  --resp-flex-direction: row; }

@media (max-width: 700px) {
  :root {
    --copy-size: 21px;
    --very-small: .8rem;
    --small: 1rem;
    --med: 1.2rem;
    --big: 3rem;
    --very-big: 3.5rem;
    --huge: 4rem;
    --resp-flex-direction: column; } }

.tweet-block {
  border-left: 2px solid var(--twitter-blue);
  margin: 0px auto;
  max-width: 500px;
  padding: 0px 15px 65px 15px; }

.tweet-block__bottom {
  align-items: center;
  display: flex;
  justify-content: space-between; }

.tweet-block__char-count--green {
  color: green; }

.tweet-block__char-count--yellow {
  color: orange; }

.tweet-block__char-count--red {
  color: red; }

.tweet-block__textarea {
  background-color: #fafafa;
  border: 1px solid var(--border-light);
  color: #303030;
  font-size: 1.1rem;
  line-height: 1.7;
  min-height: 200px;
  min-width: 300px;
  padding: 5px;
  width: 100%; }

.tweet-block__textarea:focus {
  outline: 1px solid var(--twitter-blue); }

.tweet-block__copy-btn {
  background-color: #50BB50;
  color: white;
  cursor: pointer;
  font-size: 1rem;
  padding: 10px 1rem; }

.tweet-block__toast .content div {
  color: #50BB50;
  font-size: 1rem;
  font-weight: lighter;
  vertical-align: bottom; }

