::-moz-selection {
  background-color: black;
  color: #009688;
}

::selection {
  background-color: black;
  color: #009688;
}

html {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: 'Iosevka Web', sans-serif;
  font-size: 12px;
  height: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
  padding-bottom: 4px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:hover {
  color: #009688;
  border-bottom: 1px solid #009688;
}

.wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.animation {
  width: 60px;
  height: 60px;
  position: absolute;
  right: 20px;
  top: 10px;
}

.top-section {
  padding: 30px 0 16px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

header {
  margin: 0 30px -14px;
  display: flex;
  justify-content: space-between;
  height: 45px;
}

h1 {
  font-family: 'Iosevka Web', sans-serif;
  font-size: 25px;
  text-transform: uppercase;
  color: #009688;
  font-weight: 700;
}

h1 span {
  color: #333;
}

.top-info-section {
  margin-top: 30px;
  margin-bottom: 4px;
  color: #666;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info-section p {
  font-size: 15px;
}

.author-info p {
  margin-bottom: 0;
}

.app-section {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tabs-section {
  background-color: #252525;
  width: 100%;
  display: flex;
}

.tab {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
}

.tab.css {
  width: 50%;
}

.tab.css:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  right: 0;
  top: 0;
  background-color: black;
}

.tab.sass,
.tab.scss {
  width: 50%;
}

.tab h2 {
  font-family: 'Iosevka Web', sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  font-size: 18px;
  padding: 11px 30px;
  margin: 0;
  color: white;
}

small {
  color: #666;
  padding-right: 30px;
  cursor: pointer;
  font-size: 16px;
}

small:hover {
  color: white;
}

.code-section {
  position: relative;
  background-color: #333;
  width: 100%;
  max-height: 100%;
  height: 100%;
  display: flex;
}

.code-container.left:after {
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  right: 0;
  top: 0;
  background-color: #252525;
}

.code-container.right textarea {
  -webkit-animation: highlight 1s;
  animation: highlight 1s;
}

@-webkit-keyframes highlight {
  from {
    color: #009688;
  }

  to {
    color: #eee;
  }
}

@keyframes highlight {
  from {
    color: #009688;
  }

  to {
    color: #eee;
  }
}

.code-container {
  width: 50%;
  height: 100%;
  position: relative;
}

.code-container label {
  position: absolute;
  top: 0;
  padding: 20px 30px;
  font-size: 14px;
  color: #999;
  background-color: #333;
  width: calc(100% - 60px);
}

.code-container textarea {
  width: 100%;
  height: 100%;
  padding: 60px 30px 40px 30px;
  font-family: inherit;
  font-size: 14px;
  color: #eee;
  background: none;
  border: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  resize: none;
  font-family: 'Iosevka Web', sans-serif;
}

.code-actions {
  display: flex;
  align-items: center;
}

.code-actions .button {
  cursor: pointer;
  background-color: white;
  border-radius: 6px;
  color: #333333;
  user-select: none;
  margin-right: 14px;
  width: 140px;
  font-weight: 600;
  height: 30px;
  border: 0;
  transition: all 0.1s ease;
}

.code-actions .button:hover {
  background-color: #009688;
  color: white;
}

.code-actions .button:first-child {
  top: 0;
}

.code-actions .button:last-child {
  bottom: 0;
}

.notifications {
  position: absolute;
  top: 15px;
  left: 0;
  width: 99%;
  margin: auto;
  z-index: 2;
  padding: 0;
  height: auto;
  font-size: 14px;
}

.notifications span {
  padding: 4px 10px;
  border-radius: 5px;
  display: block;
  margin-left: 30px;
  margin-right: 30px;
  font-size: 14px;
  box-shadow: 0px 4px 8px -4px black;
  width: fit-content;
}

textarea::-webkit-scrollbar-thumb {
  background-color: #777;
}

textarea::-webkit-scrollbar, textarea::-webkit-scrollbar-track {
  width: 6px;
  background-color: rgba(0, 0, 0, 0.1)
}

.notice {
  color: orange;
  background: white;
}

.error {
  color: #F44336;
  background: white;
}

.success {
  color: green;
  background: white;
}