    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        cursor: none;
    }
    
    h2 {
        color: var(--color-text);
    }
    
    .popup-text {
        color: var(--color-text);
        font-size: 1.35rem;
    }
    
    .popup-button {
        border: 2px solid var(--border);
        color: var(--border-text);
        border-radius: 10rem;
        position: absolute;
        left: 97.7%;
        top: 93%;
        background-color: transparent;
        transform: translate(-50%, -50%);
        padding: 15px;
        font-size: 30px;
    }
    
    .popup-button:hover {
        background-color: var(--border);
        color: var(--bg);
        border: 1px solid white;
        transition: 0.4s;
    }
    
    .popup .overlay {
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.7);
        z-index: 1;
        display: none;
    }
    
    .popup .content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0);
        background: var(--bg);
        width: 500px;
        height: 250px;
        z-index: 2;
        text-align: center;
        padding: 20px;
        box-sizing: border-box;
        font-family: "Open Sans", sans-serif;
    }
    
    .popup .close-btn {
        cursor: pointer;
        position: absolute;
        right: 20px;
        top: 20px;
        width: 30px;
        height: 30px;
        background: #222;
        color: #fff;
        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 300ms ease-in-out;
        transform: translate(-50%, -50%) scale(1);
    }
    
    section {
        position: fixed;
        height: 25vh;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    
    .form-label {
        font-weight: 710;
        color: var(--form-text);
    }
    
    .container-form {
        width: 90%;
        max-width: 500px;
        margin: 0 auto;
        padding: 20px;
        box-shadow: 0px 0px 20px #00000010;
        background-color: var(--form);
        border-radius: 25px;
        margin-bottom: 20px;
    }
    
    .form-group {
        width: 100%;
        margin-top: 20px;
        font-size: 20px;
        background-color: var(--form);
    }
    
    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 5px;
        font-size: 18px;
        border: 1px solid var(--form-text);
        color: var(--form-text);
        margin-top: 5px;
        background-color: var(--form);
    }
    
    textarea {
        resize: vertical;
        background-color: var(--form);
    }
    
    .button-form[type="submit"] {
        margin: 12%;
        margin-left: 6%;
        position: absolute;
        top: 97%;
        border: 1px solid var(--form-text);
        outline: none;
        padding: 25px 100px;
        font-size: 24px;
        border-radius: 1px;
        font-family: "Montserrat";
        color: var(--form-text);
        text-align: center;
        cursor: pointer;
        transition: 0.3s ease;
        background: transparent;
        cursor: none;
        font-weight: 710;
        animation: Slide_Up 1.6s ease;
    }
    
    .button-form[type="submit"]:hover {
        background-color: var(--submit-hover);
        margin-left: 5.8%;
        color: white;
        cursor: none;
        font-size: 27px;
        transition: 0.5s;
    }
    
    #status {
        width: 90%;
        max-width: 500px;
        text-align: center;
        padding: 10px;
        margin: 0 auto;
        border-radius: 8px;
    }
    
    #status.success {
        background-color: rgb(211, 250, 153);
        animation: status 4s ease forwards;
    }
    
    #status.error {
        background-color: rgb(250, 129, 92);
        color: white;
        animation: status 4s ease forwards;
    }
    
    @keyframes status {
        0% {
            opacity: 1;
            pointer-events: all;
        }
        90% {
            opacity: 1;
            pointer-events: all;
        }
        100% {
            opacity: 0;
            pointer-events: none;
        }
    }
    
    .simondev {
        text-decoration: none;
        float: left;
        color: var(--color-text);
        margin-top: -13%;
        margin-left: 0%;
        font-size: 1.2rem;
        padding: 10px 10px;
        animation: fadein 2s ease-in;
        border-radius: 0.3em;
        text-transform: uppercase;
    }
    
    .simondev:hover {
        background-color: var(--button-hover);
        transition: 0.4s;
        color: white;
        font-size: 1.3rem;
        border-left: 2px solid var(--color-text);
        border-right: 2px solid var(--color-text);
        border-bottom: 2px solid var(--color-text);
        border-top: 2px solid var(--color-text);
    }
    
    .navp {
        font-size: 1.5rem;
        color: var(--color-text);
        margin-top: 8%;
        margin-left: 5%;
        float: left;
        cursor: none;
    }
    
    .menu {
        margin-top: -13%;
        font-size: 30px;
        margin-left: 96%;
        color: var(--nav);
        cursor: none;
        position: fixed;
        text-shadow: 1px 1.5px 1px #919191, 1px 18px 6px rgba(16, 16, 16, 0.4), 1px 22px 10px rgba(16, 16, 16, 0.2), 1px 25px 35px rgba(16, 16, 16, 0.2), 1px 30px 60px rgba(16, 16, 16, 0.4);
        animation: Slide_Up 1.6s ease;
        transition: 0.4s;
    }
    
    .menu:hover {
        color: var(--nav-hover);
    }
    
    .underline::after {
        content: '';
        display: block;
        width: 0;
        height: 2px;
        background: #fff;
        transition: width .3s;
    }
    
    .underline:hover::after {
        width: 100%;
        transition: width .3s;
    }
    
    .switch-label {
        text-indent: -9999px;
        margin-top: 7%;
        width: 52px;
        height: 27px;
        background: #305696;
        border-radius: 100px;
        position: absolute;
        margin-left: -25%;
        cursor: none;
    }
    
    .switch-label:after {
        content: '';
        position: absolute;
        top: 3px;
        left: 3px;
        width: 20px;
        height: 20px;
        background: white;
        border-radius: 90px;
        transition: 0.3s;
        cursor: none;
    }
    
    input:checked+.switch-label {
        background: var(--label);
    }
    
    input:checked+.switch-label:after {
        left: calc(100% - 5px);
        transform: translateX(-100%);
    }
    
    .switch-label:active:after {
        width: 45px;
    }
    
    .pagep {
        border-bottom: 0.5px solid white;
        position: absolute;
        font-size: 2.6rem;
        color: var(--color-text);
        margin-top: -10%;
        margin-left: 25%;
        transform: translate(-50%, -50%);
        cursor: none;
        font-weight: 535;
        animation: Slide_Up 1.6s ease;
        border-bottom: 1px solid var(--border);
    }
    
    .cursor {
        z-index: 100;
        position: absolute;
        top: 0;
        left: 0;
        /* border: 2px solid white; */
        /* background-color: rgba(255, 255, 255, 0.356); */
        height: 60px;
        width: 30px;
        border-radius: 50px;
        transform: translate(-50%, -50%);
        pointer-events: none;
    }
    
    .cursor::after,
    .cursor::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: var(--cursor);
        height: 25px;
        width: 25px;
        border-radius: 50px;
    }
    
    .cursor::before {
        background-color: rgb(255, 255, 255);
    }
    
    .cursor.click::before {
        animation: click 1s ease forwards;
        background-color: var(--cursor-animation);
    }
    
    .cursor.change::before {
        width: 28px;
        height: 28px;
        background-color: transparent;
        border: 3px solid white;
        transition: 0.4s;
    }
    
    .cursor.change::after {
        width: 28px;
        height: 28px;
        background-color: transparent;
        border: 3px solid white;
        transition: 0.4s;
    }
    
    @keyframes click {
        0% {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }
        100% {
            opacity: 0;
            transform: translate(-50%, -50%) scale(7);
        }
    }
    
    html {
        height: 100%;
        font-family: 'Montserrat';
        display: grid;
        align-items: center;
        justify-items: center;
        --bg: #25566b;
        --bg2: #0F2027;
        --color-headings: White;
        --color-text: white;
        --nav: white;
        --nav-hover: #f25757;
        --socials: white;
        --socials2: #282828;
        --inv: white;
        --cursor: white;
        --cursor-animation: white;
        --border: white;
        --source: white;
        --form: #25566b;
        --form-text: white;
        --border: #F0F0F0;
        --border-text: white;
        --submit-hover: #25566b;
        --label: black;
        --submit-hover: #f25757;
        --button-hover: #f25757;
        cursor: none;
    }
    
    html[data-theme='dark'] {
        --bg: #FCFCFC;
        --bg2: #F5F5F5;
        --color-headings: #28bdae;
        --color-text: #28bdae;
        --nav: #28bdae;
        --nav-hover: black;
        --socials: #20ad9f;
        --socials2: white;
        --inv: #28bdae;
        --cursor: #37b6a9;
        --cursor-animation: #2d3748;
        --border: #28bdae;
        --source: #28bdae;
        --form: white;
        --form-text: #28bdae;
        --border: #28bdae;
        --border-text: #28bdae;
        --label: #28bdae;
        --submit-hover: #28bdae;
        --button-hover: #40E0D0;
        cursor: none;
    }
    
    body {
        background-image: linear-gradient(215deg, var(--bg), var(--bg2));
        background-attachment: fixed;
        width: 100%;
        height: 100%;
        cursor: none;
        overflow: hidden;
        animation: fadein 1.4s ease-in;
    }
    
    .toggle-container {
        margin-top: 13.5%;
        margin-left: 1%;
        cursor: none;
    }
    
    input[type=checkbox] {
        height: 0;
        width: 0;
        visibility: hidden;
        cursor: none;
    }
    
    html.transition,
    html.transition *,
    html.transition *:before,
    html.transition *:after {
        transition: all 750ms !important;
        transition-delay: 0 !important;
    }
    
    img {
        border-radius: 45%;
        height: 15vw;
        margin-left: 42%;
        cursor: none;
    }
    
    .lead {
        font-size: 1.250rem;
        color: var(--color-text);
        text-align: center;
        cursor: none;
    }
    
    .overlay {
        height: 100%;
        width: 0;
        position: fixed;
        z-index: 1;
        top: 0;
        left: 0;
        background-color: rgb(0, 0, 0);
        background-color: rgba(0, 0, 0, 0.9);
        overflow-x: hidden;
        cursor: none;
        transition: 0.5s;
    }
    
    .overlay-content {
        position: relative;
        top: 25%;
        width: 100%;
        text-align: center;
        margin-top: 30px;
        cursor: none;
    }
    
    .overlay a {
        padding: 8px;
        text-decoration: none;
        font-size: 36px;
        color: #818181;
        display: inline-block;
        transition: 0.3s;
        cursor: none;
    }
    
    .overlay a:hover,
    .overlay a:focus {
        color: #f1f1f1;
    }
    
    .overlay .closebtn {
        position: absolute;
        top: 20px;
        right: 45px;
        font-size: 60px;
        cursor: none;
    }
    
    @media screen and (max-height: 450px) {
        .overlay a {
            font-size: 20px
        }
        .overlay .closebtn {
            font-size: 40px;
            top: 15px;
            right: 35px;
        }
    }
    
    .navbar ul li a:hover {
        color: #7B68EE;
    }
    
    .social-menu ul {
        position: fixed;
        top: 95%;
        left: 50.3%;
        transform: translate(-50%, -50%);
        padding: 0;
        margin: 0;
        display: flex;
        cursor: none;
    }
    
    .social-menu ul li {
        list-style: none;
        margin: 0 10px;
        cursor: none;
    }
    
    .social-menu ul li .fa {
        color: var(--socials2);
        font-size: 25px;
        line-height: 50px;
        transition: .5s;
        cursor: none;
    }
    
    .social-menu ul li .fa:hover {
        color: #ffffff;
        cursor: none;
    }
    
    .social-menu ul li a {
        position: relative;
        display: block;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: var(--socials);
        text-align: center;
        transition: 0.5s;
        transform: translate(0, 0px);
        box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.5);
        cursor: none;
    }
    
    .social-menu ul li a:hover {
        transform: rotate(0deg) skew(0deg) translate(0, -10px);
    }
    
    .social-menu ul li:nth-child(1) a:hover {
        background-color: #3b5999;
    }
    
    .social-menu ul li:nth-child(2) a:hover {
        background-color: black;
    }
    
    .social-menu ul li:nth-child(3) a:hover {
        background-color: #e4405f;
    }
    
    .social-menu ul li:nth-child(4) a:hover {
        background-color: #0077B5;
        ;
    }
    
    .social-menu ul li:nth-child(5) a:hover {
        background-color: skyblue;
        ;
    }
    
    @media screen and (max-width: 500px) {
        body {
            height: 150%;
            overflow-y: visible;
        }
        .switch-label {
            position: fixed;
        }
        .menu {
            position: fixed;
            margin-top: 24%;
            margin-left: 92%;
            font-size: 25px;
        }
        .pagep {
            border-bottom: 0.5px solid white;
            position: absolute;
            font-size: 2.3rem;
            color: var(--color-text);
            margin-top: 50%;
            margin-left: 30%;
            transform: translate(-50%, -50%);
            cursor: none;
        }
        section {
            position: absolute;
            height: 1vh;
            width: 85%;
            margin-top: 120%;
            margin-left: 8%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }
        .form-label {
            font-weight: 710;
            color: var(--form-text);
        }
        .container-form {
            width: 90%;
            max-width: 500px;
            margin: 0 auto;
            padding: 20px;
            box-shadow: 0px 0px 20px #00000010;
            background-color: var(--form);
            border-radius: 25px;
            margin-bottom: 20px;
        }
        .form-group {
            width: 100%;
            margin-top: 20px;
            font-size: 20px;
            background-color: var(--form);
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 5px;
            font-size: 18px;
            border: 1px solid var(--form-text);
            color: var(--form-text);
            margin-top: 5px;
            background-color: var(--form);
        }
        textarea {
            resize: vertical;
            background-color: var(--form);
        }
        .button-form[type="submit"] {
            margin: 12%;
            margin-left: 6%;
            position: absolute;
            margin-top: 65%;
            border: 1px solid var(--form-text);
            outline: none;
            padding: 25px 100px;
            font-size: 24px;
            border-radius: 1px;
            font-family: "Montserrat";
            color: var(--form-text);
            text-align: center;
            cursor: pointer;
            transition: 0.3s ease;
            background: transparent;
            cursor: none;
            font-weight: 710;
            animation: Slide_Up 1.6s ease;
        }
        .button-form[type="submit"]:hover {
            background-color: var(--submit-hover);
            margin-left: 5.8%;
            color: white;
            cursor: none;
            font-size: 27px;
            transition: 0.5s;
        }
        .social-menu ul {
            position: absolute;
            top: 120%;
            left: 50.3%;
            transform: translate(-50%, -50%);
            padding: 0;
            margin: 0;
            display: flex;
            cursor: none;
        }
        .popup-button {
            border: 2px solid var(--border);
            color: var(--border-text);
            border-radius: 10rem;
            position: absolute;
            left: 94%;
            top: 120%;
            background-color: transparent;
            transform: translate(-50%, -50%);
            padding: 15px;
            font-size: 30px;
        }
    }
    
    @keyframes Slide_Up {
        0% {
            transform: translateY(50px)
        }
    }
    
    @keyframes fadein {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }