html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
}

main {
    display: block;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

a {
    background-color: transparent;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    border-style: none;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

details {
    display: block;
}

summary {
    display: list-item;
}

template {
    display: none;
}

[hidden] {
    display: none;
}

:root {
    --color-text: #e3e3e3;
    --color-background: #222;
    --color-primary: #ff6e40;
    --color-primary-light: #ff9e7c;
    --color-primary-dark: #c43e10;
}

html {
    scroll-behavior: smooth;
    font-family: "Fira Sans", sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.2px;
    color: var(--color-text);
    background-color: var(--color-background);
}
@media (min-width:768px) {
    html {
        font-size: 32px;
        line-height: 30px;
    }
}

menu {
    position: fixed;
}

section {
    padding: 3rem;
    margin: 0;
}

#home {
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    align-items: center;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 0.5rem 0;
}


@-webkit-keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        -ms-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        -ms-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        -ms-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        -ms-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        -ms-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
    color: var(--color-primary);
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

h1.blast {
    font-size: 0;
}

h1.blast > span {
    display: inline-block;
    font-size: 3.5rem;
    margin: 0 0;

    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

h1.blast > span:hover {
    color: var(--color-primary);
}

.primary {
    color: var(--color-primary);
}

.text-zone {
    position: relative;
    z-index: 1;
    margin-left: 3rem;
}

.btn {
    display: inline-block;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    background-color: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0.25rem;
    background-color: var(--color-primary);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    -webkit-transition: transform 0.15s ease-out;
    -o-transition: transform 0.15s ease-out;
    transition: transform 0.15s ease-out;
}

.btn:hover {
    color: var(--color-text);
}

.btn:hover:before {
    transform: scaleX(1);
}

#links {
    display: flex;
    flex-direction: row;
    align-items: center;
}

#links > a {
    margin-left: 1rem;
}

#links > a:first-child {
    margin-left: 0;
}

.icon-link {
    display: flex;
    padding: 0;
    margin: 0;
    background-color: transparent;
    color: var(--color-text);
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.icon-link:hover {
    color: var(--color-primary);
}

.hint {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 0.5rem 1rem;
    opacity: 0.8;
}

#backgroundAnimation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: var(--color-background);
    overflow: hidden;
    -webkit-filter: blur(3 px);
    -moz-filter: blur(3px);
    -o-filter: blur(3px);
    -ms-filter: blur(3px);
    filter: blur(3px);
}

#skills {
    min-height: calc(100vh - 6rem);
    display: flex;
    flex-direction: column;
}

#skillAnimationContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 2;
    width: 100%;
    height: 100%;
}

#skillAnimation {
    background-color: var(--color-background);
    flex-grow: 1;
    min-height: 500px;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

a:hover {
    color: var(--color-primary-light);
    text-decoration: underline;
}

footer {
    padding: 3rem 0;
    text-align: center;
    color: var(--color-text);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.map {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 100%;
}

#projects > .technologies {
    font-size: 1rem;
    margin: 0 0 1rem;
    padding: 0;
    width: 100%;
}

#projects > .technologies > span {
    margin: 0 0.5rem 0 0;
}

#projects > .links {
    font-size: 1rem;
    margin: 1rem 0 1rem;
    padding: 0;
    width: 100%;
}

#projects > .links > a {
    margin: 0 0.5rem 0 0;
}

.sdnl {
    display: block;
}
@media (min-width: 1024px) {
    .sdnl {
        display: none;
    }
}