/*
  1. Use a more-intuitive box-sizing model.
*/
*, *::before, *::after {
  box-sizing: border-box;
}

/*
  2. Remove default margin
*/
* {
  margin: 0;
}

/*
  3. Allow percentage-based heights in the application
*/
html, body {
  height: 100%;
}

/*
  Typographic tweaks!
  4. Add accessible line-height
  5. Improve text rendering
*/
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/*
  6. Improve media defaults
*/
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/*
  7. Remove built-in form typography styles
*/
input, button, textarea, select {
  font: inherit;
}

/*
  8. Avoid text overflows
*/
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/*
  9. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

body {
  background: #1C1E2D;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  color: rgb(240, 240, 240);
  font-family: "Nunito", sans-serif;
}

body a {
  color: #6ac1fc;
}

ul {
  padding: 0 20px;
}

.mono {
  font-family: "Roboto Mono", monospace;
  font-size: 14px;
}

.ql-indent-1 {
  padding-left: 20px !important;
}

#site {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 2rem;
}

#header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px 20px 20px;
  gap: 2rem;
  position: relative;
}

#main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  width: 720px;
}

#nav-main {
  display: flex;
  justify-content: space-between;
  max-width: 400px;
  width: 100%;
  font-family: "Nunito", sans-serif;
}

#nav-main a {
  color: rgb(240, 240, 240);
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  transition: color 0.2s ease-in-out;
  position: relative;
  transition: all 0.2s ease-in-out;
}

#nav-main .badge {
  background: #d8203b;
  position: absolute;
  color: #FFF;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 4px;
  border-radius: 4px 4px 4px 0;
  top: -17px;
  right: -10px;
}

#nav-main a:nth-child(1) {
  color: #FF556E;
}

#nav-main a:nth-child(2) {
  color: #55BBFF;
}

#nav-main a:nth-child(3) {
  color: #ff7fdf;
}

#nav-main a:nth-child(4) {
  color: #7ed83d;
}

#nav-main a:nth-child(5) {
  color: #FFC83D;
}

#nav-main a:hover {
  transition: all 0.2s ease-in-out;
  color: rgb(240, 240, 240);
}

#nav-main a.active {
  color: rgb(240, 240, 240);
}

#nav-main a:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgb(240, 240, 240);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease-in-out;
}

#nav-main a.active:after {
  transform: scaleX(1);
}

#footer {
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

#social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.social-link svg {
  fill: rgb(240, 240, 240);
  width: 40px;
  height: 40px;
  transition: all 0.2s ease-in-out;
}

.social-link:nth-child(1) svg {
  fill: #FF556E;
}

.social-link:nth-child(2) svg {
  fill: #55BBFF;
}

.social-link:nth-child(3) svg {
  fill: #ff7fdf;
}

.social-link:nth-child(4) svg {
  fill: #7ed83d;
}

.social-link:nth-child(5) path {
  fill: #FFC83D;
  transition: all 0.2s ease-in-out;
}

.social-link:hover svg {
  fill: rgb(240, 240, 240);
  transition: all 0.2s ease-in-out;
}

.social-link:nth-child(4):hover path {
  fill: rgb(240, 240, 240);
  transition: all 0.2s ease-in-out;
}

.social-link:nth-child(5):hover path {
  fill: rgb(240, 240, 240);
  transition: all 0.2s ease-in-out;
}

#footer-links {
  display: flex;
  gap: 40px;
}

#footer-links a {
  color: rgb(240, 240, 240);
  text-decoration: none;
  opacity: 0.7;
  transition: all 0.2s ease-in-out;
}

#footer-links a:hover {
  opacity: 1;
  transition: all 0.2s ease-in-out;
}

#comments {
  margin-top: 40px;
  opacity: 0.8;
}

#error {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: absolute;
  width: 100vw;
  height: 100vh;
}

.error {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.section.feed {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.section.single {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.section.form {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  position: relative;
}

.section-header h2 {
  position: relative;
  opacity: 0.6;
  font-weight: 700;
  background: #1C1E2D;
  padding: 0 1rem;
}

.section-header::before {
  position: absolute;
  width: 100%;
  height: 1px;
  border-top: dashed 1px rgba(255, 255, 255, 0.2);
  content: "";
}

.section.video {
  min-height: 124px;
}

.section.video iframe {
  width: 0;
  height: 0;
  pointer-events: none;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}

.section.video iframe.active {
  opacity: 1;
  pointer-events: all;
  width: 100%;
  height: 320px;
  transition: all 0.2s ease-in-out;
}

.panel {
  position: relative;
  background: #272A3D !important;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

.panel a {
  color: #6ac1fc;
  text-decoration: none;
  opacity: 1;
  transition: all 0.2s ease-in-out;
  font-weight: bold;
}

.panel a:hover {
  color: #FFF;
  transition: all 0.2s ease-in-out;
}

.panel em {
  opacity: 0.7;
}

.panel::after,
.comment-policy-refresh::after {
  position: absolute;
  content: "";
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #FF556E 0%, #55BBFF 30%, #7ed83d 70%, #FFC83D 100%);
  box-shadow: 0 -2px 3px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 4px 4px;
}

.panel-thumbnail {
  overflow: hidden;
  border-radius: 4px 4px 0 0;
  box-sizing: border-box;
  border-bottom: solid 1px rgba(255, 255, 255, 0.1);
  z-index: 1;
  position: relative;
}

.panel-thumbnail.compact {
  height: 150px;
}

.panel-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -5px 5px rgba(0, 0, 0, 0.1);
  z-index: 10;
  position: relative;
  gap: 40px;
}

.panel-body {
  margin: 20px 0 0 0;
  box-sizing: border-box;
}

.panel-content .center {
  text-align: center;
}

.panel-content h2 {
  font-size: 1rem;
  color: #FFE355;
  opacity: 1;
  margin-bottom: 0.5rem;
}

.panel-header {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.3rem;
  background: #2f314d;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  position: relative;
  left: -20px;
  top: -20px;
  border-radius: 4px 4px 0 0;
  color: rgb(240, 240, 240) !important;
}

.panel-header::after {
  position: absolute;
  content: "";
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #FF556E 0%, #55BBFF 30%, #7ed83d 70%, #FFC83D 100%);
  box-shadow: 0 -2px 3px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 4px 4px;
}

.panel-meta-box {
  display: flex;
  font-size: 0.875rem;
  gap: 1rem;
}

.panel-meta {
  display: flex;
  gap: 0.5rem;
}

.panel-meta-label {
  opacity: 0.8;
}

.panel-meta-value {
  opacity: 0.5;
}

.panel-meta-category {
  opacity: 0.5 !important;
  color: rgb(240, 240, 240) !important;
}

.panel-footer {
  background: #232637;
}

.panel-footer .panel-meta {
  gap: 1rem;
}

.panel-footer .panel-meta-label {
  opacity: 1;
}

.panel-meta-category:hover {
  opacity: 1 !important;
}

.panel-tags {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  padding-bottom: 3rem;
  gap: 1rem;
}

.panel-tags h2 {
  margin: 0;
  font-size: 1rem;
  opacity: 0.5;
}

.panel-content {
  padding: 1.5rem;
  padding-top: 0;
}

.panel-content p {
  margin-bottom: 20px;
}

.panel img.center {
  margin: 40px auto;
}

.panel-footer {
  padding: 1.5rem;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.panel-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-right: 60px;
}

.panel-author-image {
  width: 48px;
  height: 48px;
}

.panel-author-image img {
  border-radius: 50%;
}

.panel-author-name {
  display: flex;
  flex-direction: column;
}

[data-pagination],
[data-pagination] *,
[data-pagination] *:before,
[data-pagination] *:after {
  box-sizing: border-box;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-kerning: auto;
}

[data-pagination] {
  font-size: 8pt;
  line-height: 1;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  margin: 1em auto;
  text-align: center;
  transition: font-size 0.2s ease-in-out;
  margin-top: 30px;
  display: flex;
  align-items: center;
}

[data-pagination] .page-arrow {
  display: flex;
  align-items: center;
}

[data-pagination] svg {
  width: 24px;
  height: 24px;
  fill: rgb(240, 240, 240);
}

[data-pagination] ul {
  list-style-type: none;
  display: inline;
  font-size: 100%;
  margin: 0;
  padding: 0.5em;
}

[data-pagination] ul li {
  display: inline-block;
  font-size: 100%;
  width: auto;
  border-radius: 3px;
}

[data-pagination] > a {
  font-size: 140%;
  text-decoration: none;
}

[data-pagination] a {
  color: rgb(240, 240, 240);
  font-size: 100%;
  padding: 0.5em;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  opacity: 0.5;
}

[data-pagination] a:focus,
[data-pagination] a:hover {
  color: #6ac1fc;
  transition: all 0.2s ease-in-out;
  opacity: 1;
}

[data-pagination] li.current a {
  opacity: 1;
  position: relative;
  color: #6ac1fc;
  font-weight: bold;
}

[data-pagination] li.current a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #6ac1fc;
}

[data-pagination] .disabled,
[data-pagination] [hidden],
[data-pagination] [disabled] {
  opacity: 0.5;
  pointer-events: none;
}

@media (min-width: 350px) {
  [data-pagination] {
    font-size: 10pt;
  }
}
@media (min-width: 500px) {
  [data-pagination] {
    font-size: 12pt;
  }
}
@media (min-width: 700px) {
  [data-pagination] {
    font-size: 14pt;
  }
}
@media (min-width: 900px) {
  [data-pagination] {
    font-size: 16pt;
  }
}
.panel-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.panel-grid a {
  text-decoration: none;
  color: rgb(240, 240, 240);
  transform: scale(1);
  transition: all 0.2s ease-in-out;
}

.panel-grid a:hover {
  text-decoration: none;
  color: rgb(240, 240, 240);
  transform: scale(1.02);
  transition: all 0.2s ease-in-out;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.panel-grid .panel::after {
  background: none;
}

.panel-grid .panel-body {
  margin: 0;
  padding: 16px;
}

.panel-grid .panel-thumbnail img {
  -o-object-position: left bottom;
     object-position: left bottom;
}

.panel-grid p {
  margin: 0;
  padding: 0;
  opacity: 0.5;
  font-size: 0.875rem;
}

.quote {
  display: flex;
  gap: 26px;
  margin: 20px 0;
  align-items: flex-start;
}

.quote .quote-author {
  max-width: 40px;
  max-height: 40px;
}

.quote .quote-author img {
  border-radius: 50%;
}

.quote .quote-content {
  padding: 16px;
  position: relative;
  flex: 1;
}

.quote.left .quote-content {
  background: #194868;
  border-radius: 0 7px 7px 7px;
}

.quote.left .quote-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: -16px;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-right: 16px solid #194868;
}

.quote.right .quote-content {
  background: #393c5e;
  border-radius: 7px 0 7px 7px;
}

.quote.right .quote-content::after {
  content: "";
  position: absolute;
  top: 0;
  right: -16px;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-left: 16px solid #393c5e;
}

.panel.profile {
  margin-top: 100px;
}

.panel.profile::before {
  position: absolute;
  content: "";
  top: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #FF556E 0%, #55BBFF 30%, #7ed83d 70%, #FFC83D 100%);
  box-shadow: 0 -2px 3px rgba(0, 0, 0, 0.1);
  border-radius: 4px 4px 0 0;
}

.panel.profile .panel-body {
  margin-top: -100px;
}

.panel-avatar {
  display: flex;
  justify-content: center;
  position: relative;
  top: -100px;
}

.panel-avatar img {
  border-radius: 50%;
  max-width: 200px;
  width: 100%;
  border: double 4px transparent;
  background-image: linear-gradient(#FF556E, #55BBFF, #7ed83d, #FFC83D), linear-gradient(to right, #FF556E, #55BBFF, #7ed83d, #FFC83D);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
}

.panel.profile .panel-body {
  padding-top: 500px;
}

.play-btn-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

.play-btn-container .play-btn {
  width: 60px;
  height: 60px;
  opacity: 0.8;
  transition: all ease-in-out 0.2s;
  cursor: pointer;
}

.play-btn-container .play-btn:hover {
  opacity: 1;
  transform: scale(1.1);
  transition: all ease-in-out 0.2s;
}

.play-btn-container .play-btn-text {
  font-size: 1rem;
  color: rgb(240, 240, 240);
  opacity: 0.5;
}

.project-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.features {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-text {
  font-size: 1rem;
  opacity: 0.8;
  flex: 1;
}

.feature-text h3 {
  color: #FFC83D;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px !important;
  height: 48px !important;
}

.feature-item:nth-child(1) svg {
  fill: #FF556E;
}

.feature-item:nth-child(2) svg {
  fill: #55BBFF;
}

.feature-item:nth-child(3) svg {
  fill: #ff7fdf;
}

.feature-item:nth-child(4) svg {
  fill: #7ed83d;
}

.feature-item:nth-child(5) svg {
  fill: #FFC83D;
}

.guide-step {
  font-size: 1.5rem;
  font-size: bold;
  opacity: 0.5;
  margin-right: 1rem;
}

.tag {
  text-decoration: none;
}

.tag:nth-child(1) {
  color: #FF556E;
}

.tag:nth-child(2) {
  color: #55BBFF;
}

.tag:nth-child(3) {
  color: #7ed83d;
}

.tag:nth-child(4) {
  color: #FFC83D;
}

.tag-list {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  border: 2px solid transparent;
  background: #3670ee;
  color: rgb(240, 240, 240);
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}

.btn:hover {
  background: #4a7ef0;
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
}

.btn.secondary {
  background: #e03232;
}

.btn.secondary:hover {
  background: #e34747;
}

#site-logo {
  display: block;
  max-width: 400px;
  width: 100%;
  position: relative;
}

#site-logo img {
  max-width: 100%;
  height: auto;
  z-index: 1;
  position: relative;
}

#code-smoke {
  position: absolute;
  bottom: 70px;
  left: 10px;
  z-index: 1;
}

form {
  max-width: 500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

input[type=text], input[type=email], input[type=url],
input[type=password], input[type=search], textarea, select {
  background: none;
  outline: none;
  width: 100%;
  padding: 10px;
  border: solid 2px rgb(240, 240, 240);
  color: rgb(240, 240, 240);
  transition: border 0.2s ease-in-out;
}

input[type=text] + label, input[type=email] + label, input[type=url] + label,
input[type=password] + label, input[type=search] + label, textarea + label, select + label {
  color: rgb(240, 240, 240);
  transition: color 0.2s ease-in-out;
}

input[type=text]:focus, input[type=email]:focus, input[type=url]:focus,
input[type=password]:focus, input[type=search]:focus, textarea:focus, select:focus {
  border: solid 2px #6ac1fc;
  transition: border 0.2s ease-in-out;
}

input[type=text]:focus + label, input[type=email]:focus + label, input[type=url]:focus + label,
input[type=password]:focus + label, input[type=search]:focus + label, textarea:focus + label, select:focus + label {
  color: #6ac1fc;
  transition: color 0.2s ease-in-out;
}

input[type=submit] {
  border: none;
  background: #55BBFF;
  color: rgb(240, 240, 240);
  font-weight: bold;
  text-transform: uppercase;
  padding: 10px;
  transition: all 0.2s ease-in-out;
  opacity: 0.8;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

input[type=submit]:hover {
  background: #55BBFF;
  color: rgb(240, 240, 240);
  opacity: 1;
  transition: all 0.2s ease-in-out;
}

.field {
  display: flex;
  flex-direction: column-reverse;
  gap: 5px;
  opacity: 0.8;
  transition: all 0.2s ease-in-out;
}

.field:hover {
  opacity: 1;
  transition: all 0.2s ease-in-out;
}

@media screen and (max-width: 768px) {
  .container {
    padding: 0;
    overflow-x: hidden;
  }
  #header {
    padding-top: 40px;
    padding-bottom: 20px;
  }
  .panel,
  .panel::after,
  .panel-thumbnail {
    border-radius: 0 0 0 0;
  }
  .panel-head {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 20px;
  }
  .panel::before {
    position: absolute;
    content: "";
    top: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FF556E 0%, #55BBFF 30%, #7ed83d 70%, #FFC83D 100%);
    box-shadow: 0 -2px 3px rgba(0, 0, 0, 0.1);
  }
  .panel-header {
    background: none;
    box-shadow: none;
    padding: 0;
    position: relative;
    top: 0;
    left: 0;
  }
  .panel-header::after {
    display: none;
  }
  .panel-author {
    padding: 0;
    gap: 10px;
  }
  .panel-author-image {
    width: 24px;
    height: 24px;
  }
  .panel-author-name {
    flex-direction: row;
    gap: 5px;
    align-items: center;
  }
  .panel-author-name span {
    font-size: 0.875rem;
  }
  .panel-grid {
    flex-direction: column;
    gap: 40px;
  }
  .panel-grid .panel::after {
    position: absolute;
    content: "";
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FF556E 0%, #55BBFF 30%, #7ed83d 70%, #FFC83D 100%);
    box-shadow: 0 -2px 3px rgba(0, 0, 0, 0.1);
  }
  .quote .quote-author {
    width: 28px;
    height: 28px;
  }
  .panel-avatar {
    top: -75px;
  }
  .panel-avatar img {
    max-width: 150px;
  }
  #footer-links {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  #disqus_thread {
    padding: 0 20px;
  }
  form {
    padding: 0 20px;
  }
}
@media screen and (max-width: 450px) {
  #nav-main a {
    font-size: 4vw;
  }
}/*# sourceMappingURL=mickeyuk.css.map */