@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Serif:wght@800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600&display=swap');

:root {
    --typewriterSpeed: 7s;
    --typewriterCharacters: 50;
    --white: #fff;
    --black: #000;
}

* {
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

*::selection {
    background-color: var(--white);
    color: var(--black);
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: #009999;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #006666;
}

body {
    width: 100%;
    height: 100vh;
    background-color: var(--black);
    overflow-x: hidden;
}

.main-content {
    min-height: 100vh;
    background-color: var(--black);
    overflow-x: hidden;
    margin: 7vw;
}

.cursor {
    position: relative;
    height: 100px;
    width: 100px;
}

.cursor .circle {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(#00d0ff, #ff005e);
    border-radius: 50%;
}

.my-images {
    display: block;
    padding: 10px;
    width: 23vw;
    height: 13vw;
    border-radius: 25px;
}

#js {
    display: block;
    object-fit: fill;
    width: 23vw;
    height: 13vw;
}

.cards {
    margin-top: 3vw;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

p.top-para {
    text-align: justify;
    line-height: 1.8;
    padding: 0vw 1vw 1vw 1vw;
    margin: 0vw 4vw 1vw 10vw;
    color: #e6e6e6;
}

#popupButton {
    background-color: hsl(345deg 100% 47%);
    color: white;
    padding: 15px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: grid;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin-left: auto;
    margin-right: auto;
}

#popupButton:hover {
    background-color: hsl(345deg 100% 47%);
}

#popupContainer {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

#popupContainer img {
    display: block;
    margin: 0 auto;
    max-width: 90%;
    max-height: 90%;
}

.close {
    color: #fff;
    position: absolute;
    top: 15px;
    right: 35px;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}

a {
    background-image: linear-gradient(90deg, red, blue);
    background-size: 0% 2px;
    background-repeat: no-repeat;
    background-position: left bottom;
    transition: background-size 300ms ease;
}

/* p.top-para span {
    background-image: linear-gradient(90deg, red, blue);
    background-size: 0% 2px;
    background-repeat: no-repeat;
    background-position: left bottom;
    transition: background-size 300ms ease;
    font-weight: 500;
}

p.top-para span:hover {
    background-size: 100% 2px;
} */

p.top-para::selection, .bottom-para::selection {
    background-color: var(--white);
    color: var(--black);
}

.bottom-para {
    text-align: justify;
    line-height: 1.8;
    margin: 0vw 4vw 0vw 10vw;
    color: #e6e6e6;
}

.some-wrappers {
    margin: 7vw 0vw 7vw 0vw;
}

.mycard, #diff-card {
    background: linear-gradient(to bottom, #009900 0%, #669900 100%);
    width: 25vw;
    padding: 15px;
    margin: 20px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    border-radius: 10px;
    transition: 0.3s;
}

.mycard:hover, #diff-card:hover {
    box-shadow: 0 8px 16px 0 rgba(126, 123, 123, 0.55);
}

.mycard .container p::selection, .mycard .container h3::selection {
    background-color: #9f7ff7;
}

h3 {
    text-align: center;
}

h1 {
    text-align: center;
    font-family: 'Roboto Serif', sans-serif;
    font-size: 40px;
    line-height: 50px;
}

h1::selection {
    background-color: #e600e6;
    color: var(--white);
}

p {
    color: var(--black);
    text-align: center;
    padding: 0px 15px 0px 15px;
}

a {
    text-decoration: none;
    color: var(--black);
}

.links {
    display: flex;
    color: #ff33ff;
    cursor: default;
}

.popup .overlay {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 350vw;
    height: 350vh;
    background: rgba(80, 79, 79, 0.7);
    z-index: 1;
    display: none;
}

.popup .content {
    position: absolute;
    top: 370%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: rgb(163, 163, 163);
    width: 50vw;
    height: 80vh;
    z-index: 2;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 30px;
}

.popup .close-btn {
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
    width: 30px;
    height: 30px;
    background: #222;
    color: var(--white);
    font-size: 25px;
    font-weight: 600;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
}

.popup.active .overlay {
    display: block;
}

.popup.active .content {
    transition: all 650ms ease-in-out;
    transform: translate(-50%, -50%) scale(1);
}

.popup .overlay {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 350vw;
    height: 350vh;
    background: rgba(0,0,0,0.7);
    z-index: 1;
    display: none;
}

.button-82-pushable {
    position: relative;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    outline-offset: 4px;
    transition: filter 250ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}
  
.button-82-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: hsl(0deg 0% 0% / 0.25);
    will-change: transform;
    transform: translateY(2px);
    transition: transform 600ms cubic-bezier(.3, .7, .4, 1);
}
  
.button-82-edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(
      to left,
      hsl(340deg 100% 16%) 0%,
      hsl(340deg 100% 32%) 8%,
      hsl(340deg 100% 32%) 92%,
      hsl(340deg 100% 16%) 100%
    );
}
  
.button-82-front {
    display: block;
    position: relative;
    padding: 12px;
    border-radius: 12px;
    font-size: 1.1rem;
    color: white;
    background: hsl(345deg 100% 47%);
    will-change: transform;
    transform: translateY(-5px);
    transition: transform 600ms cubic-bezier(.3, .7, .4, 1);
}
  
@media (min-width: 768px) {
    .button-82-front {
      font-size: 1.25rem;
      padding: 12px 42px;
    }
}
  
  .button-82-pushable:hover {
    filter: brightness(120%);
}
  
.button-82-pushable:hover .button-82-front {
    transform: translateY(-10px);
    transition: transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}
  
.button-82-pushable:active .button-82-front {
    transform: translateY(-2px);
    transition: transform 34ms;
}
  
.button-82-pushable:hover .button-82-shadow {
    transform: translateY(4px);
    transition: transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}
  
.button-82-pushable:active .button-82-shadow {
    transform: translateY(1px);
    transition: transform 34ms;
}
  
.button-82-pushable:focus:not(:focus-visible) {
    outline: none;
}

.button-49,
.button-49:after {
  width: 150px;
  height: 76px;
  line-height: 78px;
  font-size: 20px;
  font-family: 'Bebas Neue', sans-serif;
  background: linear-gradient(45deg, transparent 5%, #FF013C 5%);
  border: 0;
  color: var(--white);
  letter-spacing: 3px;
  box-shadow: 6px 0px 0px #00E6F6;
  outline: transparent;
  position: relative;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-49:after {
  --slice-0: inset(50% 50% 50% 50%);
  --slice-1: inset(80% -6px 0 0);
  --slice-2: inset(50% -6px 30% 0);
  --slice-3: inset(10% -6px 85% 0);
  --slice-4: inset(40% -6px 43% 0);
  --slice-5: inset(80% -6px 5% 0);
  
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 3%, #00E6F6 3%, #00E6F6 5%, #FF013C 5%);
  text-shadow: -3px -3px 0px #F8F005, 3px 3px 0px #00E6F6;
  clip-path: var(--slice-0);
}

.button-49:hover:after {
  animation: 1s glitch;
  animation-timing-function: steps(2, end);
}

@keyframes glitch {
  0% {
    clip-path: var(--slice-1);
    transform: translate(-20px, -10px);
  }
  10% {
    clip-path: var(--slice-3);
    transform: translate(10px, 10px);
  }
  20% {
    clip-path: var(--slice-1);
    transform: translate(-10px, 10px);
  }
  30% {
    clip-path: var(--slice-3);
    transform: translate(0px, 5px);
  }
  40% {
    clip-path: var(--slice-2);
    transform: translate(-5px, 0px);
  }
  50% {
    clip-path: var(--slice-3);
    transform: translate(5px, 0px);
  }
  60% {
    clip-path: var(--slice-4);
    transform: translate(5px, 10px);
  }
  70% {
    clip-path: var(--slice-2);
    transform: translate(-10px, 10px);
  }
  80% {
    clip-path: var(--slice-5);
    transform: translate(20px, -10px);
  }
  90% {
    clip-path: var(--slice-1);
    transform: translate(-10px, 0px);
  }
  100% {
    clip-path: var(--slice-1);
    transform: translate(0);
  }
}

@media (min-width: 768px) {
  .button-49,
  .button-49:after {
    width: 200px;
    height: 86px;
    line-height: 88px;
  }
}

.my-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.ctf-img {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.ctf-img img {
    display: block;
    padding: 10px;
    width: 43vw;
    height: 53vh;
    border-radius: 25px;
}

.jump-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.xtra-large-title {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.xtra-large-title span {
    display: inline-block;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    cursor: none;
    font-family: 'Source Code Pro', monospace;
    font-size: 5.5vw;
    font-weight: 900;
    text-align: center;
    color: #33cccc;
    position: relative;
    width: max-content;
    transition: 0.15s;
}

.xtra-large-title span.spaces {
    cursor: none;
    width: 17px;
}   

section.caption {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin: 30vh 0vh 0vh 0vh;
}

#email_img, #email_img:hover {
    padding: 10px;
    border: 2px solid #747373;
    background-color: #918f8f;
    border-radius: 50%;
}

section.caption h2 {
    position: relative;
    color: var(--white);
    font-weight: 900;
    font-size: 2.5vw;
    text-transform: capitalize;
    font-family: 'Source Code Pro', monospace;
    width: max-content;
}

section.caption h2::before, section.caption h2::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

section.caption h2::before {
    background-color: var(--black);
    animation: typewriter var(--typewriterSpeed) steps(var(--typewriterCharacters)) 1s forwards;
}

section.caption h2::after {
    width: .125em;
    border-radius: 3vw;
    background-color: var(--white);
    animation:
      typewriter var(--typewriterSpeed) steps(var(--typewriterCharacters)) 1s forwards,
      blink 750ms steps(23) infinite;
}

@keyframes typewriter {
    to {
        left: 100%;
    }
}

@keyframes blink {
    to {
        background: transparent;
    }
}

hr {
    margin: 10vh 0vh 10vh 0vh;
    width: 100%;
    height: 3.5vh;
    background: linear-gradient(to right, #33cc33 0%, #ccff33 100%);
    border: none;
    border-radius: 10px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.3);
}

footer {
    margin-left: 1vw;
    padding: 1vw;
}

footer .links-sc {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
}

footer .links-sc i {
    margin: 5px;
    padding: 10px;
    color: var(--white);
    border: 2px solid #a09f9f;
    background-color: #918f8f;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    transition: 0.1s;
}

footer .links-sc i:hover {
    padding: 10px;
    border: 2px solid #747373;
    border-radius: 50%;
}

footer p {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    color: var(--white);
    text-transform: capitalize;
    font-weight: 700;
}

.last {
    position: absolute;
    left: 50%;
    right: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin: 10px 10px 10px 10px;
    text-transform: capitalize;
    font-size: 12px;
    color: var(--black);
    background: linear-gradient(to right, #33cc33 0%, #ccff33 100%);
    border-radius: 20px;
    width: 50%;
    text-align: center;
    padding: 0.3rem 1rem 1rem 1rem;
}

.last p {
    font-size: 1.3em;
    font-weight: 600;
    padding-top: 0;
    display: flex;
    justify-content: center;
    color: var(--black);
    text-align: center;
}

section.some-tag p.tag-element {
    margin-bottom: 4rem;
    cursor: none;
    color: rgb(172, 172, 172);
    text-align: left;
    text-transform: lowercase;
    font-size: 1.5rem;
    font-style: italic;
    font-family: 'Caveat', cursive;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

section.a-some-tag p.a-tag-element {
    margin: 0rem 0rem 6rem 0rem;
    cursor: none;
    color: rgb(172, 172, 172);
    text-align: left;
    text-transform: lowercase;
    font-size: 1.5rem;
    font-style: italic;
    font-family: 'Caveat', cursive;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: absolute;
    left: 4%;
}

section.some-tag-2 p.tag-element-2 {
    cursor: none;
    color: rgb(172, 172, 172);
    text-align: left;
    text-transform: lowercase;
    font-size: 1.5rem;
    font-style: italic;
    font-family: 'Caveat', cursive;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    left: 6%;
}

section.some-tag-3 p.tag-element-3 {
    cursor: none;
    color: rgb(172, 172, 172);
    text-align: left;
    text-transform: lowercase;
    font-size: 1.5rem;
    font-style: italic;
    font-family: 'Caveat', cursive;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    left: 15%;
}

.whole-wrapper {
    margin: 3vw 0vw 5vw 0vw;
}

.my-popup-3 .content-3 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background-color: rgb(168, 165, 165);
    width: 150px;
    height: 200px;
    z-index: 99999;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 30px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.5);
}

.my-popup-3 .close-btn-3 {
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
    width: 30px;
    height: 30px;
    background: #222;
    color: var(--white);
    font-size: 25px;
    font-weight: 600;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.my-popup-3.active .overlay-3 {
    display: block;
}

.my-popup-3.active .content-3 {
    transition: all 600ms ease-in-out;
    transform: translate(-50%, -50%) scale(1);
}

.footer-wrapper {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.htm-link {
    color: #182f3a;
}

.wrapper {
    padding-top: 5rem;
    display: flex;
    justify-content: center;
}

.wrapper .static-txt {
    color: var(--white);
    font-size: 60px;
    font-weight: 400;
}

.wrapper .dynamic-txts {
    margin-left: 20px;
    line-height: 90px;
    height: 90px;
    overflow: hidden;
}

.dynamic-txts li {
    list-style: none;
    color: #33cc33;
    font-size: 60px;
    font-weight: 500;
    top: 0;
    position: relative;
    animation: slide 12s steps(4) infinite;
}

@keyframes slide {
    100% {
        top: -360px;
    }
}

.dynamic-txts li {
    position: relative;
}

.dynamic-txts li::after {
    content: '';
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--black);
    border-left: 2px solid #33cc33;
    animation: typing 3s steps(15) infinite;
}

@keyframes typing {
    40%,
    60% {
        left: calc(100% + 30px);
    }

    100% {
        left: 0;
    }
}

#fb-logo {
    padding-left: 25%;
}

.list-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 5rem;
}

.list-item {
    list-style: none;
}

.list-item a {
    text-transform: capitalize;
    text-align: center;
    position: relative;
    display: block;
    color: transparent;
    -webkit-text-stroke: 1px var(--white);
    font-size: 5em;
    font-weight: 900;
    text-decoration: none;
}

.list-item a:hover {
    color: var(--white);
    -webkit-text-stroke: 1px var(--black);
    transition: 0.4s;
}

.list-item a::before, .list-item a::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.4s;
}

.list-item a:hover::before {
    color: #f00;
    z-index: 1;
    -webkit-text-stroke: 1px var(--black);
    transform: translate(10px, -10px);
}

.list-item a:hover::after {
    color: #0ff;
    z-index: 2;
    -webkit-text-stroke: 1px var(--black);
    transform: translate(20px, -20px);
}

@media only screen and (max-width:414px) {
    .cursor {
        display: none;
    }

    body {
        overflow-x: hidden;
    }

    .mycard, #diff-card {
        background: linear-gradient(to bottom, #009900 0%, #669900 100%);
        width: 350px;
        padding: 15px;
        margin: 20px;
        box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
        border-radius: 10px;
        transition: 0.3s;
    }

    .my-images {
        display: block;
        padding: 10px;
        width: 265px;
        height: 140px;
        border-radius: 25px;
    }

    #js {
        display: block;
        object-fit: fill;
        width: 265px;
        height: 140px;
    }

    .my-popup-3 .content-3 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0);
        background-color: rgb(168, 165, 165);
        width: 27vw;
        height: 45vh;
        z-index: 2;
        text-align: center;
        padding: 20px;
        box-sizing: border-box;
        border-radius: 30px;
        box-shadow: 0 4px 8px 0 rgba(0,0,0,0.5);
    }
    
    .my-popup-3 .close-btn-3 {
        cursor: pointer;
        position: absolute;
        right: 20px;
        top: 20px;
        width: 30px;
        height: 30px;
        background: #222;
        color: var(--white);
        font-size: 25px;
        font-weight: 600;
        line-height: 30px;
        text-align: center;
        border-radius: 50%;
        box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    }
    
    .my-popup-3.active .overlay-3 {
        display: block;
    }
    
    .my-popup-3.active .content-3 {
        transition: all 600ms ease-in-out;
        transform: translate(-50%, -50%) scale(1);
    }

    .popup .overlay {
        position: fixed;
        top: 0px;
        left: 0px;
        width: 350vw;
        height: 350vh;
        background: rgba(80, 79, 79, 0.7);
        z-index: 1;
        display: none;
    }
    
    .popup .content {
        position: absolute;
        top: 1000%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0);
        background: rgb(163, 163, 163);
        width: 350px;
        height: 500px;
        z-index: 2;
        text-align: center;
        padding: 20px;
        box-sizing: border-box;
        border-radius: 30px;
    }
    
    .popup .close-btn {
        cursor: pointer;
        position: absolute;
        right: 20px;
        top: 20px;
        width: 30px;
        height: 30px;
        background: #222;
        color: var(--white);
        font-size: 25px;
        font-weight: 600;
        line-height: 30px;
        text-align: center;
        border-radius: 50%;
    }
    
    .popup.active .overlay {
        display: block;
    }
    
    .popup.active .content {
        transition: all 650ms ease-in-out;
        transform: translate(-50%, -50%) scale(1);
    }

    .ctf-img img {
        display: block;
        padding: 10px;
        width: 330px;
        height: 350px;
        border-radius: 25px;
    }

    section.some-tag p.tag-element {
        margin-bottom: 1rem;
        cursor: none;
        color: rgb(172, 172, 172);
        text-align: left;
        text-transform: lowercase;
        font-size: 1.5rem;
        font-style: italic;
        font-family: 'Caveat', cursive;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .bottom-para {
        text-align: center;
        line-height: 2;
        margin: 0vw 4vw 0vw 10vw;
        color: #e6e6e6;
    }

    p.top-para {
        text-align: center;
        line-height: 1.8;
        padding: 0vw 1vw 1vw 1vw;
        margin: 0vw 4vw 1vw 10vw;
        color: #e6e6e6;
    }

    .last {
        position: absolute;
        left: 50%;
        right: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        flex-direction: column;
        overflow: hidden;
        margin-top: 4rem;
        text-transform: capitalize;
        font-size: 12px;
        color: var(--black);
        background: linear-gradient(to right, #33cc33 0%, #ccff33 100%);
        border-radius: 20px;
        width: 50%;
        text-align: center;
        padding: 0.3rem 1rem 1rem 1rem;
    }

    section.a-some-tag p.a-tag-element {
        margin-top: .5rem;
        cursor: none;
        color: rgb(172, 172, 172);
        text-align: left;
        text-transform: lowercase;
        font-size: 1.5rem;
        font-style: italic;
        font-family: 'Caveat', cursive;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        position: absolute;
        left: 4%;
    }

    hr {
        margin: 4rem 0rem 2rem 0rem;
        width: 100%;
        height: 3.5vh;
        background: linear-gradient(to right, #33cc33 0%, #ccff33 100%);
        border: none;
        border-radius: 10px;
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.3);
    }

    .xtra-large-title span {
        display: inline-block;
        -webkit-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
        cursor: none;
        font-family: 'Source Code Pro', monospace;
        font-size: 2.5rem;
        font-weight: 900;
        text-align: center;
        color: #33cccc;
        position: relative;
        width: max-content;
        transition: 0.15s;
    }

    .xtra-large-title span:hover, .xtra-large-title span.big {
        font-size: 3.4rem;
    }

    section.caption h2 {
        font-size: .72rem;
    }

    section.caption {
        margin: 19rem 0rem 4rem 0rem;
    }

    .xtra-large-title {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
        align-items: center;
        height: 60vh;
    }

    section.caption h2::after {
        width: .125em;
        border-radius: 3vw;
        background-color: var(--white);
        animation:
          typewriter var(--typewriterSpeed) steps(var(--typewriterCharacters)) 1s forwards,
          blink 750ms steps(23) infinite;
    }

    .list-item a {
        margin-top: 4rem;
    }
}

@media only screen and (max-width:768px) {
    .cursor {
        display: none;
    }
    .mycard, #diff-card {
        background: linear-gradient(to bottom, #009900 0%, #669900 100%);
        width: 350px;
        padding: 15px;
        margin: 20px;
        box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
        border-radius: 10px;
        transition: 0.3s;
    }

    .my-images {
        display: block;
        padding: 10px;
        width: 320px;
        height: 140px;
        border-radius: 25px;
    }

    #js {
        display: block;
        object-fit: fill;
        width: 320px;
        height: 140px;
    }

    .my-popup-3 .content-3 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0);
        background: var(--white);
        width: 270px;
        height: 300px;
        z-index: 2;
        text-align: center;
        padding: 20px;
        box-sizing: border-box;
        border-radius: 30px;
        box-shadow: 0 4px 8px 0 rgba(0,0,0,0.5);
    }
    
    .my-popup-3 .close-btn-3 {
        cursor: pointer;
        position: absolute;
        right: 20px;
        top: 20px;
        width: 30px;
        height: 30px;
        background: #222;
        color: var(--white);
        font-size: 25px;
        font-weight: 600;
        line-height: 30px;
        text-align: center;
        border-radius: 50%;
        box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    }
    
    .my-popup-3.active .overlay-3 {
        display: block;
    }
    
    .my-popup-3.active .content-3 {
        transition: all 600ms ease-in-out;
        transform: translate(-50%, -50%) scale(1);
    }

    .popup .overlay {
        position: fixed;
        top: 0px;
        left: 0px;
        width: 350vw;
        height: 350vh;
        background: rgba(80, 79, 79, 0.7);
        z-index: 1;
        display: none;
    }
    
    .popup .content {
        position: absolute;
        top: 450%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0);
        background: rgb(163, 163, 163);
        width: 350px;
        height: 500px;
        z-index: 2;
        text-align: center;
        padding: 20px;
        box-sizing: border-box;
        border-radius: 30px;
    }
    
    .popup .close-btn {
        cursor: pointer;
        position: absolute;
        right: 20px;
        top: 20px;
        width: 30px;
        height: 30px;
        background: #222;
        color: var(--white);
        font-size: 25px;
        font-weight: 600;
        line-height: 30px;
        text-align: center;
        border-radius: 50%;
    }
    
    .popup.active .overlay {
        display: block;
    }
    
    .popup.active .content {
        transition: all 650ms ease-in-out;
        transform: translate(-50%, -50%) scale(1);
    }

    .ctf-img img {
        display: block;
        padding: 10px;
        width: 330px;
        height: 350px;
        border-radius: 25px;
    }
}

@media only screen and (max-width:320px) {
    .cursor {
        display: none;
    }
    .mycard, #diff-card {
        background: linear-gradient(to bottom, #009900 0%, #669900 100%);
        width: 300px;
        padding: 15px;
        margin: 20px;
        box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
        border-radius: 10px;
        transition: 0.3s;
    }

    .my-images {
        display: block;
        padding: 10px;
        width: 265px;
        height: 140px;
        border-radius: 25px;
    }

    #js {
        display: block;
        object-fit: fill;
        width: 265px;
        height: 140px;
    }

    .my-popup-3 .content-3 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0);
        background-color: rgb(168, 165, 165);
        width: 27vw;
        height: 45vh;
        z-index: 2;
        text-align: center;
        padding: 20px;
        box-sizing: border-box;
        border-radius: 30px;
        box-shadow: 0 4px 8px 0 rgba(0,0,0,0.5);
    }
    
    .my-popup-3 .close-btn-3 {
        cursor: pointer;
        position: absolute;
        right: 20px;
        top: 20px;
        width: 30px;
        height: 30px;
        background: #222;
        color: var(--white);
        font-size: 25px;
        font-weight: 600;
        line-height: 30px;
        text-align: center;
        border-radius: 50%;
        box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    }
    
    .my-popup-3.active .overlay-3 {
        display: block;
    }
    
    .my-popup-3.active .content-3 {
        transition: all 600ms ease-in-out;
        transform: translate(-50%, -50%) scale(1);
    }

    .popup .overlay {
        position: fixed;
        top: 0px;
        left: 0px;
        width: 350vw;
        height: 350vh;
        background: rgba(80, 79, 79, 0.7);
        z-index: 1;
        display: none;
    }
    
    .popup .content {
        position: absolute;
        top: 1000%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0);
        background: rgb(163, 163, 163);
        width: 350px;
        height: 500px;
        z-index: 2;
        text-align: center;
        padding: 20px;
        box-sizing: border-box;
        border-radius: 30px;
    }
    
    .popup .close-btn {
        cursor: pointer;
        position: absolute;
        right: 20px;
        top: 20px;
        width: 30px;
        height: 30px;
        background: #222;
        color: var(--white);
        font-size: 25px;
        font-weight: 600;
        line-height: 30px;
        text-align: center;
        border-radius: 50%;
    }
    
    .popup.active .overlay {
        display: block;
    }
    
    .popup.active .content {
        transition: all 650ms ease-in-out;
        transform: translate(-50%, -50%) scale(1);
    }

    .ctf-img img {
        display: block;
        padding: 10px;
        width: 330px;
        height: 350px;
        border-radius: 25px;
    }

    section.some-tag p.tag-element {
        margin-bottom: 5rem;
        cursor: none;
        color: rgb(172, 172, 172);
        text-align: left;
        text-transform: lowercase;
        font-size: 1.5rem;
        font-style: italic;
        font-family: 'Caveat', cursive;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    p.top-para, .bottom-para {
        text-align: center;
        line-height: 1.8;
        padding: 0vw 1vw 1vw 1vw;
        margin: 0vw 4vw 1vw 10vw;
        color: #e6e6e6;
    }
}