*{
    margin: 0;
    padding: 0;
}
:root {
    --sdqyellow1: #FFEE32;
    --sdqyellow2: #FFD300;
    --sdqlight: #D6D6D6;
    --sdqgrey: #333533;
    --sdqblack: #202020;
}
@font-face {
    font-family: Gabarito;
    src: url(./fonts/Gabarito.ttf);
}

/* Home Page */

.homepagebox{
    background: var(--sdqblack, #202020);
    width: 100%;
    height: 100dvh;
    overflow: hidden;
    z-index: -1;
}

/* Navigation Bar */

.navrect{
    position: absolute;
    width: 100%;
    height: 70px;
    background: var(--sdqgrey, #333533);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.navbuttonflex{
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
@media (min-width: 200px){
    .navbuttonflex{
        gap: 5%;
    }
}
@media (min-width: 900px){
    .navbuttonflex{
        gap: 100px;
    }
}
@media (min-width: 200px){
    .navlogo img{
        width: 20px;
        height: 20px;
        aspect-ratio: 1/1;
    }
}
@media (min-width: 900px){
    .navlogo img{
        width: 30px;
        height: 30px;
        aspect-ratio: 1/1;
    }
}
.navtext{
    color: var(--sdqlight, #D6D6D6);
    font-family: Gabarito;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 5px;
    transition: ease-in-out 200ms;
}
.navtext a{
    color: var(--sdqlight, #D6D6D6);
    text-decoration: none;
}
@media (min-width: 200px){
    .navtext{font-size: 0.75rem;}
}
@media (min-width: 900px){
    .navtext{font-size: 1rem;}
    .navtext:hover{
        transition: ease-in-out 200ms;
        letter-spacing: 12px;
    }
}

/* Home Page Shapes */

@keyframes circlefloat {
  0%   {transform: translateY(0px);}
  50%  {transform: translateY(50px);}
  100% {transform: translateY(0px);}
}
.homeshape{
    width: 100%;
    height: 100dvh;
    overflow: hidden;
    position: absolute;
    z-index: 1;
}
@media (min-width: 900px){
.homerect1{
    position: relative;
    top: -500px;
    left: 100px;
    width: 250px;
    height: 1500px;
    transform: rotate(-10deg);
    background: linear-gradient(180deg, var(--sdqgrey, #333533) 0%, var(--sdqblack, #202020) 100%);
}
.homerect2{
    position: relative;
    top: -200px;
    left: 75%;
    width: 250px;
    height: 1500px;
    transform: rotate(20deg);
    background: linear-gradient(180deg, var(--sdqgrey, #333533) 0%, var(--sdqblack, #202020) 100%);
}
.homecircle1{
    position: relative;
    top: 300px;
    left: -50px;
    width: 300px;
    height: 300px;
    border-radius: 300px;
    background: linear-gradient(180deg, var(--sdqblack, #202020) 0%, var(--sdqgrey, #333533) 100%);
    box-shadow: 10px 20px 40px 0 rgba(214, 214, 214, 0.10) inset;
    animation-name: circlefloat;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    filter: blur(4px);
    opacity: 0.8;
}
.homecircle2{
    position: relative;
    top: 200px;
    left: 75%;
    width: 150px;
    height: 150px;
    border-radius: 150px;
    background: linear-gradient(180deg, var(--sdqgrey, #333533) 0%, var(--sdqblack, #202020) 100%);
    box-shadow: 10px 20px 40px 0 rgba(214, 214, 214, 0.10) inset;
    animation-name: circlefloat;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    filter: blur(3px);
    opacity: 0.8;
}
.homecircle3{
    position: relative;
    top: 400px;
    left: 80%;
    width: 400px;
    height: 400px;
    border-radius: 400px;
    background: linear-gradient(180deg, var(--sdqgrey, #333533) 0%, var(--sdqblack, #202020) 100%);
    box-shadow: 10px 20px 40px 0 rgba(214, 214, 214, 0.10) inset;
    animation-name: circlefloat;
    animation-duration: 7s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    filter: blur(5px);
    opacity: 0.8;
}
}

/* Home Text */

.hometextflex{
    width: 100%;
    height: 100dvh;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
}
.hometext1{
    font-family: Gabarito;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    background: linear-gradient(90deg, var(--sdqyellow1, #FFEE32) 0%, var(--sdqyellow2, #FFD300) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: -24px;
    margin-left: 1rem;
}
@media (min-width: 200px){
    .hometext1{
        font-size: 1.5rem;
        letter-spacing: 1rem;
    }
}
@media (min-width: 900px){
    .hometext1{
        font-size: 2rem;
        letter-spacing: 2rem;
    }
}
.hometext2{
    font-family: Gabarito;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    background: linear-gradient(180deg, var(--sdqyellow2, #FFD300) 0%, var(--sdqyellow1, #FFEE32) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@media (min-width: 200px){
    .hometext2{font-size: 6rem;}
}
@media (min-width: 900px){
    .hometext2{font-size: 12rem;}
}
.hometext3{
    color: var(--sdqlight, #D6D6D6);
    font-family: Gabarito;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.hometext4{
    color: #909090;
    font-family: Gabarito;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 36px;
}
@media (min-width: 200px){
    .hometext3{
        font-size: 1.5rem;
        width: 300px;
        word-wrap: break-word;
        text-align: center;
    }
    .hometext4{
        font-size: 1rem;
        margin-top: 1rem;
        width: 250px;
        word-wrap: break-word;
        text-align: center;
    }
}
@media (min-width: 900px){
    .hometext3{
        font-size: 3rem;
        width: auto;
    }
    .hometext4{
        font-size: 2rem;
        width: auto;
    }
}
.homebutton{
    border-radius: 20px;
    background: var(--sdqyellow2, #FFD300);
    box-shadow: 0 0 12px 5px rgba(255, 238, 50, 0.50);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: ease-in-out 200ms;
}
.homebutton:hover{
    background: var(--sdqyellow1, #FFEE32);
    box-shadow: 0 0 20px 5px rgba(255, 238, 50, 0.50);
    transition: ease-in-out 200ms;
}
.homebutton a{
    text-decoration: none;
}
.homebuttontext{
    color: var(--sdqblack, #202020);
    font-family: Gabarito;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 6px;
    width: auto;
    margin-left: 5px;
    padding: 0 20px;
}
@media (min-width: 200px){
    .homebutton{
        height: 30px;
    }
    .homebuttontext{font-size: 0.75rem;}
}
@media (min-width: 900px){
    .homebutton{
        height: 40px;
    }
    .homebuttontext{font-size: 1rem;}
}

/* About */

.aboutpagebox{
    background: var(--sdqgrey, #333533);
    width: 100%;
    height: auto;
    padding-top: 200px;
    padding-bottom: 200px;
    overflow: hidden;
    z-index: -1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 100px;
}
.aboutflex1{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.abouttext1{
    color: var(--sdqlight, #D6D6D6);
    font-family: Gabarito;
    font-size: 5rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.aboutbrushline img{
    height: auto;
}
@media (min-width: 200px){
    .abouttext1{font-size: 10dvw;}
    .aboutbrushline img{width: 70dvw;}
}
@media (min-width: 900px){
    .abouttext1{font-size: 5rem;}
    .aboutbrushline img{width: 500px;}
}
.aboutinnerflex{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
    gap: 50px;
}
@media (min-width: 200px){
    .aboutinnerflex{flex-direction: column;}
}
@media (min-width: 900px){
    .aboutinnerflex{flex-direction: row;}
}
.aboutparagraph{
    color: var(--sdqlight, #D6D6D6);
    font-family: Gabarito;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
@media (min-width: 200px){
    .aboutparagraph{font-size: 1rem;}
}
@media (min-width: 900px){
    .aboutparagraph{font-size: 1.5rem;}
}
.aboutimage1 img{
    height: auto;
    border-radius: 20px;
    box-shadow: 5px 5px 50px 0 var(--sdqblack, #202020);
}
@media (min-width: 200px){
    .aboutimage1 img{width: 60dvw;}
    .aboutimage2 img{
        height: auto;
        width: 100dvw;
        border-radius: 0;
        box-shadow: 0 0 50px 0 var(--sdqblack, #202020);
    }
}
@media (min-width: 900px){
    .aboutimage1 img{
        width: 300px;
        transition: ease-in-out 200ms;
    }
    .aboutimage2 img{
        height: 300px;
        width: auto;
        border-radius: 20px;
        box-shadow: 5px 5px 50px 0 var(--sdqblack, #202020);
        transition: ease-in-out 200ms;
    }
    .aboutimage1 img:hover, .aboutimage2 img:hover{
        transform: scale(0.95);
        rotate: 2deg;
        transition: ease-in-out 200ms;
    }
}
.aboutimage3and4{
    display: flex;
    transition: ease-in-out 200ms;
}
@media (min-width: 200px){
    .aboutimage3 img, .aboutimage4 img{
        height: 250px;
        width: auto;
    }
}
@media (min-width: 900px){
    .aboutimage3 img, .aboutimage4 img{
        height: 400px;
        width: auto;
        box-shadow: 5px 5px 50px 0 var(--sdqblack, #202020);
    }
    .aboutimage3and4:hover{
        transform: scale(0.95);
        rotate: -2deg;
        transition: ease-in-out 200ms;
    }
}
.aboutimage3 img{
    border-radius: 20px 0 0 20px;
}
.aboutimage4 img{
    border-radius: 0 20px 20px 0;
}

/* Projects (Home Page) */

.homeprojectsbox{
    background: var(--sdqblack, #202020);
    width: 100%;
    height: auto;
    padding-top: 200px;
    padding-bottom: 200px;
    overflow: hidden;
    z-index: -1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 100px;
}
.homeprojectsouter{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 80px;
}
.homeprojectsinner{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
}
@media (min-width: 200px){
    .homeprojectsinner{flex-direction: column;}
}
@media (min-width: 900px){
    .homeprojectsinner{flex-direction: row;}
}
.homeproject{
    border-radius: 30px;
    border: 2px solid rgba(214, 214, 214, 0.20);
    background: linear-gradient(180deg, var(--sdqblack, #202020) 0%, var(--sdqgrey, #333533) 100%);
    box-shadow: -10px -10px 40px 0 var(--sdqblack, #202020) inset;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    position: relative;
    overflow: hidden;
    gap: 50%;
}
@media (min-width: 200px){
    .homeproject{
        width: 90dvw;
        height: 70dvh;
    }
}
@media (min-width: 900px){
    .homeproject{
        width: 400px;
        height: 600px;
    }
}
.homeprojectstextflex{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.homeprojectstext1{
    font-family: Gabarito;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background: linear-gradient(90deg, var(--sdqyellow2, #FFD300) 0%, var(--sdqyellow1, #FFEE32) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.homeprojectstext2{
    color: var(--sdqlight, #D6D6D6);
    font-family: Gabarito;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    transition: ease-in-out 200ms;
    padding: 0.5rem 1rem;
    border: 2px solid var(--sdqlight, #D6D6D6);
    border-radius: 20px;
}
.homeprojectstext2:hover{
    letter-spacing: 0.25rem;
    transition: ease-in-out 200ms;
}
.homeprojectstext2 a{
    color: var(--sdqlight, #D6D6D6);
    text-decoration: none;
}
@media (min-width: 200px){
    .homeprojectstext1{font-size: 2rem;}
    .homeprojectstext2{font-size: 1rem;}
}
@media (min-width: 900px){
    .homeprojectstext1{font-size: 5rem;}
    .homeprojectstext2{font-size: 1.5rem;}
}
.homeprojectimage{
    position: absolute;
    inset: 0;
}
.homeprojectimage img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    filter: blur(2px);
    transition: ease-in-out 200ms;
}
.homeprojectimage img:hover{
    opacity: 1;
    filter: blur(0);
    transition: ease-in-out 200ms;
}
.homeprojectname{
    font-family: Gabarito;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    background: linear-gradient(90deg, var(--sdqyellow2, #FFD300) 0%, var(--sdqyellow1, #FFEE32) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 1;
}
@media (min-width: 200px){
    .homeprojectname{font-size: 1.5rem;}
}
@media (min-width: 900px){
    .homeprojectname{font-size: 2rem;}
}
.homeprojectparagraph{
    width: 250px;
    color: var(--sdqlight, #D6D6D6);
    font-family: Gabarito;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    z-index: 1;
}

/* Skills */

.skillsbox{
    background: var(--sdqgrey, #333533);
    width: 100%;
    height: auto;
    padding-top: 200px;
    padding-bottom: 200px;
    overflow: hidden;
    z-index: -1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 100px;
}
.skillstitle{
    font-family: Gabarito;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background: linear-gradient(90deg, var(--sdqyellow2, #FFD300) 0%, var(--sdqyellow1, #FFEE32) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@media (min-width: 200px){
    .skillstitle{font-size: 3rem;}
}
@media (min-width: 900px){
    .skillstitle{font-size: 5rem;}
}
.skillsouterflex{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
@media (min-width: 200px){
    .skillsouterflex{gap: 70px;}
}
@media (min-width: 900px){
    .skillsouterflex{gap: 20px;}
}
.skillsetflex{
    width: 900px;
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 50px;
}
@media (min-width: 200px){
    .skillsetflex{
        width: 250px;
        flex-wrap: wrap;
        justify-content: space-between;
    }
}
@media (min-width: 900px){
    .skillsetflex{
        width: 900px;
        justify-content: left;
    }
}
.skillsetname{
    width: 200px;
    color: var(--sdqlight, #D6D6D6);
    font-family: Gabarito;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.skillsinnerflex{
    width: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.skillsicon{
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(180deg, var(--sdqblack, #202020) 0%, var(--sdqgrey, #333533) 100%);
    box-shadow: 10px 10px 40px 0 var(--sdqblack, #202020), 10px 10px 40px 0 rgba(214, 214, 214, 0.20) inset;
    display: flex;
    justify-content: center;
    align-items: center;
}
.skillsicon img{
    width: 40px;
    height: auto;
}
.skillname{
    color: var(--sdqlight, #D6D6D6);
    font-family: Gabarito;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* Footer */

.footerbox{
    width: 100%;
    height: 300px;
    background: var(--sdqblack, #202020);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
@media (min-width: 200px){
    .footerlogo img{
        width: 30px;
        height: 30px;
        aspect-ratio: 1/1;
    }
}
@media (min-width: 900px){
    .footerlogo img{
        width: 50px;
        height: 50px;
        aspect-ratio: 1/1;
    }
}
.footercopyright, .footerlink{
    color: var(--sdqlight, #D6D6D6);
    font-family: Gabarito;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.footerlink a{
    color: var(--sdqlight, #D6D6D6);
    text-decoration: none;
}
@media (min-width: 200px){
    .footercopyright, .footerlink{
        font-size: 0.75rem;
    }
}
@media (min-width: 900px){
    .footercopyright, .footerlink{
        font-size: 1rem;
    }
}
.footerflex, .contactflex, .footerlinkflex{
    display: flex;
    justify-content: center;
    align-items: center;
}
.footerflex{
    width: 70dvw;
    justify-content: space-between;
}

@media (min-width: 200px){
    .contactflex, .footerlinkflex{
        gap: 10px;
    }
}
@media (min-width: 900px){
    .contactflex, .footerlinkflex{
        gap: 30px;
    }
}
@media (min-width: 200px){
    .footerflex{
        flex-direction: column;
        gap: 20px;
    }
    .footerflex2{
        flex-direction: column-reverse;
    }
}
@media (min-width: 900px){
    .footerflex{
        flex-direction: row;
    }
}
.contactbox{
    width: 70px;
    height: 70px;
    border-radius: 30px;
    border: 4px solid rgba(214, 214, 214, 0.50);
    background: linear-gradient(180deg, var(--sdqgrey, #333533) 0%, var(--sdqblack, #202020) 100%);
    box-shadow: 0 0 40px 0 rgba(214, 214, 214, 0.30) inset, 0 0 20px 0 rgba(214, 214, 214, 0.30);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: ease-in-out 200ms;
}
@media (min-width: 200px){
    .contactbox{
        width: 40px;
        height: 40px;
    }
    .contactbox img{
        width: 15px;
        height: auto;
    }
}
@media (min-width: 900px){
    .contactbox{
        width: 70px;
        height: 70px;
    }
    .contactbox img{
        width: 30px;
        height: auto;
    }
}
.contactbox:hover{
    box-shadow: 0 0 40px 0 rgba(214, 214, 214, 0.60) inset, 0 0 20px 0 rgba(214, 214, 214, 0.50);
    transform: translateY(-10px);
    transition: ease-in-out 200ms;
}

/* Project Page */

.projectbody{
    background: var(--sdqgrey, #333533);
    width: 100%;
    height: auto;
    padding-top: 200px;
    padding-bottom: 200px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 100px;
}
.titleschool, .titlepersonal{
    border-radius: 100px;
    background: linear-gradient(85deg, var(--sdqblack, #202020) 0%, var(--sdqgrey, #333533) 100%);
    box-shadow: 0 10px 40px 0 var(--sdqblack, #202020), 10px 10px 40px 0 rgba(214, 214, 214, 0.40) inset;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 50px;
}
.titleschooltext, .titlepersonaltext{
    color: var(--sdqlight, #D6D6D6);
    font-family: Gabarito;
    font-size: 4rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
@media (min-width: 200px){
    .titleschooltext, .titlepersonaltext{font-size: 2rem;}
}
@media (min-width: 900px){
    .titleschooltext, .titlepersonaltext{font-size: 4rem;}
}
.projectbox{
    height: 400px;
    border-radius: 50px;
    border: 2px solid rgba(255, 238, 50, 0.30);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
}
@media (min-width: 200px){
    .projectbox{width: 90dvw;}
}
@media (min-width: 900px){
    .projectbox{width: 800px;}
}
.projectimage{
    position: absolute;
    inset: 0;
}
.projectimage img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    filter: blur(2px);
}
.projectname{
    font-family: Gabarito;
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    background: linear-gradient(90deg, var(--sdqyellow1, #FFEE32) 0%, var(--sdqyellow2, #FFD300) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 80%;
    text-align: left;
    z-index: 1;
}
@media (min-width: 200px){
    .projectname{font-size: 2rem;}
}
@media (min-width: 900px){
    .projectname{font-size: 3rem;}
}
.projectinner{
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 1;
}
.projectinner2{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 30px;
}
.projectinner3{
    width: 190px;
    display: flex;
    justify-content: right;
    align-items: center;
    flex-wrap: wrap-reverse;
    gap: 5px;
}
.projectparagraph{
    width: 250px;
    color: var(--sdqlight, #D6D6D6);
    font-family: Gabarito;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    z-index: 1;
}
.projectbutton{
    width: 100px;
    height: 30px;
    border-radius: 20px;
    background: rgba(214, 214, 214, 0.80);
    box-shadow: 0 4px 40px 0 rgba(214, 214, 214, 0.40), 0 10px 40px 0 #FFF inset;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: ease-in-out 200ms;
}
.projectbutton:hover{
    transform: scale(1.1);
    transition: ease-in-out 200ms;
}
.projectbuttontext{
    color: var(--sdqblack, #202020);
    font-family: Gabarito;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.projectbuttontext a{
    color: var(--sdqblack, #202020);
    text-decoration: none;
}

/* Project Articles */

.articlebody{
    background: var(--sdqblack, #202020);
    width: 100%;
    height: auto;
    padding-top: 200px;
    padding-bottom: 200px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.articlebox{
    width: 50dvw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px; 
}
@media (min-width: 200px){
    .articlebox{width: 80dvw;}
}
@media (min-width: 900px){
    .articlebox{width: 50dvw;}
}
.articletitle{
    font-family: Gabarito;
    font-style: normal;
    font-size: 3rem;
    font-weight: 700;
    line-height: normal;
    background: linear-gradient(90deg, var(--sdqyellow2, #FFD300) 0%, var(--sdqyellow1, #FFEE32) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}
.articleskillflex{
    color: var(--sdqlight, #D6D6D6);
    font-family: Gabarito;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.articleskillflexinner{
    display: flex;
    justify-content: center;
    gap: 30px;
}
@media (min-width: 200px){
    .articleskillflexinner{
        width: 250px;
        flex-wrap: wrap;
    }
}
@media (min-width: 900px){
    .articleskillflexinner{
        width: 100%;
        align-items: center;
    }
}
.articleskill{
    width: 50px;
    height: 50px;
    border-radius: 20px;
    background: linear-gradient(180deg, var(--sdqblack, #202020) 0%, var(--sdqgrey, #333533) 100%);
    box-shadow: 10px 10px 40px 0 var(--sdqblack, #202020), 10px 10px 40px 0 rgba(214, 214, 214, 0.20) inset;
    display: flex;
    justify-content: center;
    align-items: center;
}
.articleskill img{
    width: 25px;
    height: auto;
}
@media (min-width: 200px){
    .articleimage{width: 100%;}
}
@media (min-width: 900px){
    .articleimage{width: 90%;}
}
.articleimage img{width: 100%;}
.articletext{
    width: 100%;
    color: var(--sdqlight, #D6D6D6);
    font-family: Gabarito;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.lightbackground{
    background-color: var(--sdqlight, #D6D6D6);
}
@media (min-width: 200px){
    .projectyoutubevid{
        width: 300px;
        height: auto;
    }
}
@media (min-width: 900px){
    .projectyoutubevid{
        width: 560px;
        height: 315px;
    }
}