@import url(vendor/animate.css);
@import url("https://fonts.googleapis.com/css2?family=Fira+Mono:wght@400;500;700&display=swap");
* {
  box-sizing: border-box; }

::selection {
  background-color: rgba(247, 142, 67, 0.8);
  color: #272C34; }

html {
  font-size: 62.5%; }

body {
  font-size: 1.8rem;
  line-height: 1.6;
  background-color: #272C34;
  background: linear-gradient(to top, #272C34 50%, #1f252e 50%);
  background-size: cover;
  background-size: 100% 4px;
  color: #dbe0ea;
  font-family: "Fira Mono";
  padding: 50px; }
  @media (max-width: 576px) {
    body {
      padding: 16px; } }
  body > a {
    transform: scale(0.75);
    transition: transform 600ms; }
    body > a:hover {
      transform: scale(1);
      transition: transform 300ms; }

h1, h2, h3, h4, h5, h6 {
  line-height: 1.4;
  text-shadow: 2px 2px 3px #1f252e; }

h1 {
  font-size: 6rem; }
  @media (max-width: 576px) {
    h1 {
      font-size: 3rem; } }
h2 {
  border-bottom: 1px dashed rgba(247, 142, 67, 0.5);
  color: rgba(247, 142, 67, 0.8);
  padding: 10px 0;
  font-size: 3rem; }
  h2::after {
    content: "_";
    animation: flash 2s infinite; }
  @media (max-width: 576px) {
    h2 {
      font-size: 2rem; } }
h3 {
  margin-top: 50px; }

a {
  color: #f78e43; }

@media (max-width: 768px) {
  a[href*="github.com"] {
    display: none; } }

.button {
  font-size: 2rem;
  text-decoration: none;
  display: inline-block;
  border: 5px outset #f78e43;
  background-color: rgba(247, 142, 67, 0.75);
  box-shadow: 2px 2px 15px #1f252e;
  padding: 10px 40px;
  color: #272C34;
  border-radius: 5px; }
  .button:hover {
    background-color: rgba(247, 142, 67, 0.85); }

img {
  max-width: 100%; }

li {
  list-style-type: " - "; }

.container {
  max-width: 1600px;
  margin: 0 auto; }

.flex {
  display: flex;
  flex-wrap: wrap; }
  .flex .identity {
    flex-basis: calc(50% - 50px); }
    .flex .identity span {
      color: white; }
  .flex .job {
    flex-basis: calc(50% - 50px); }

section {
  border-radius: 5px;
  margin: 25px;
  padding: 50px;
  border: 1px solid rgba(183, 193, 212, 0.1);
  background-color: rgba(255, 255, 255, 0.01);
  box-shadow: 2px 2px 15px #1f252e; }
  @media (max-width: 576px) {
    section {
      margin: 24px 12px;
      padding: 24px; } }
.meself, .experience, .tools {
  display: flex;
  flex-wrap: wrap; }
  .meself h2, .experience h2, .tools h2 {
    flex-basis: 100%; }

details {
  padding: 10px 25px;
  flex-basis: 50%; }
  details:hover {
    cursor: pointer;
    color: white; }
  details summary {
    border-bottom: 1px dashed rgba(183, 193, 212, 0.25);
    padding: 10px 25px;
    font-size: 1.6rem; }
    details summary::marker {
      font-size: 3rem;
      color: rgba(247, 142, 67, 0.75); }

.form :focus-visible {
  outline: 1px solid rgba(247, 142, 67, 0.75); }

.form > div {
  display: flex; }
  @media (max-width: 576px) {
    .form > div {
      flex-direction: column; } }
label {
  width: 300px;
  color: white;
  margin: 16px 0;
  padding: 16px; }
  @media (max-width: 576px) {
    label {
      width: 100%;
      margin: 16px 0 0;
      padding: 0; } }
input:not([type=checkbox]), textarea {
  width: 100%;
  border: 1px solid rgba(183, 193, 212, 0.1);
  background-color: rgba(255, 255, 255, 0.01);
  box-shadow: 2px 2px 15px #1f252e;
  color: white;
  margin: 16px 0;
  padding: 16px; }
  @media (max-width: 576px) {
    input:not([type=checkbox]), textarea {
      width: 100%; } }
@media (max-width: 992px) {
  .identity, .job, details {
    flex-basis: 100% !important; } }
