:root {
    --title: #1c2428;
    --subtitle: #526069;
    --text: #484f56;
    --prompt: #a3afb7;
    --border: #e4eaec;
    --normal: #CCD5DB;
    --hover: #A3AFB7;
    --active: #76838F;

    --bg-800: #263238;
    --bg-700: #37474F;
    --bg-600: #526069;
    --bg-500: #76838F;
    --bg-400: #A3AFB7;
    --bg-300: #CCD5DB;
    --bg-200: #E4EAEC;
    --bg-100: #F3F7F9;

    --lg-800: #4A7800;
    --lg-700: #5A9101;
    --lg-600: #6DA611;
    --lg-500: #7EB524;
    --lg-400: #94CC39;
    --lg-300: #ADD966;
    --lg-200: #C3E887;
    --lg-100: #DCF7B0;

    --or-800: #B53F00;
    --or-700: #DE4E00;
    --or-600: #EB6709;
    --or-500: #F57D1B;
    --or-400: #FA983C;
    --or-300: #FAB06B;
    --or-200: #FFC894;
    --or-100: #FFE1C4;

    --yl-800: #FAA700;
    --yl-700: #FCB900;
    --yl-600: #FFCD17;
    --yl-500: #FFDC2E;
    --yl-400: #FFE54F;
    --yl-300: #FFED78;
    --yl-200: #FFF39C;
    --yl-100: #FFF6B5;

    --cy-800: #007D96;
    --cy-700: #0099B8;
    --cy-600: #0BB2D4;
    --cy-500: #28C0DE;
    --cy-400: #54CBE3;
    --cy-300: #77D9ED;
    --cy-200: #9DE6F5;
    --cy-100: #C2F5FF;

    --light-grey: #f1f3fa;
    --white: #ffffff;
    --animation-speed: 0.2s;
    --gradient-bg: linear-gradient( 135deg, #43CBFF 10%, #9708CC 100%);
  }

h1, h2, h3, h4 {
    color: var(--title);
}

h5, h6 {
    color: var(--subtitle);
}

p {
    color: var(--text);
}

a {
    text-decoration: none;
    color: var(--text);
}

a:hover {
    text-decoration: none;
    color: var(--bg-200);
}

.bg-square {
    background: url(/static/2022/images/background.png);
    background-repeat: repeat;
    height: 700px;
    width: 100%;
    max-width: 1800px;
    transform: rotate(349deg);
    position: absolute;
    z-index: -1;
    box-shadow: 3px 3px 25px #00000026;
    border-radius: 55px;
    margin: 0 auto;
    margin-top: -300px;
    left: 0;
    opacity: 0.5;
    right: 0;
}

.triangles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.triangles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    /* background: rgba(239, 239, 239, 0.8); */
    animation: animate 25s linear infinite;
    bottom: -150px; 
}

.triangles li:nth-child(1){
    width: 100px;
    height: 100px;
    background: url(/static/2022/images/go.png);
    background-size: contain;
    background-repeat: no-repeat;
    left: 25%;
    animation-delay: 0s;
}

.triangles li:nth-child(2){
    left: 10%;
    width: 0;
    height: 0;
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-bottom: 55px solid rgb(135 170 222);
    animation-delay: 2s;
    animation-duration: 12s;
}

.triangles li:nth-child(3){
    left: 70%;
    width: 0;
    height: 0;
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-bottom: 55px solid rgb(44 90 160);
    animation-delay: 4s;
}

.triangles li:nth-child(4){
    left: 40%;
    width: 0;
    height: 0;
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-bottom: 55px solid rgb(33 68 120);
    animation-delay: 0s;
    animation-duration: 18s;
}

.triangles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.triangles li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.triangles li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.triangles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.triangles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.triangles li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}

@keyframes animate {
    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(0deg);
        opacity: 0;
        /* border-radius: 50%; */
    }
}

.lead-box h1 {
    font-size: 4rem;
    color: black;
    font-weight: bold;
}

.lead-box p {
    font-weight: 400;
}

/* Resume */
.resume .intro {
    background-image: url('/static/2022/images/resume_bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

.resume .intro p,
.resume .intro h1{
    color: var(--bg-700);
}

.resume .intro p {
    font-size: 2rem;
}

.resume .intro h1 {
    font-size: 4rem;
}

.resume .stripe {
    border-bottom: 5px solid #efefef;
}

.resume .stripe i{
    background: -webkit-linear-gradient(rgb(34, 165, 180), rgb(149, 76, 201));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.resume .skills {
    border-right: 2px dashed #a5b1db5e;
}

.construction {
    background-image: url(/static/2022/images/construction.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}