* {
    margin: 0px;
    padding: 0px;
}

body {
    font-family: Arial, sans-serif;
    background: radial-gradient(circle, rgb(3, 82, 161) 0%, rgba(1, 105, 202, 0.486) 100%, rgb(1, 42, 89) 100%);
    color: white;
}

.modal {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#collabLink {
    top: 0px;
    margin-left: 40%;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-image: url("Contactpopup.gif");
    background-size: contain;
    padding: 20px;
    border-radius: 20px;
    width: 350px;
    position: relative;
    animation: 1.5s ease-out 0s 1 normal none running dropDown;
}

@keyframes dropDown {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

.close {
    color: black;
    position: absolute;
    top: 0px;
    right: 2px;
    font-size: 30px;
    cursor: pointer;
}

.close:hover {
    color: red;
}

.popuphead {
    text-align: center;
    font-size: 20px;
    color: rgb(28, 28, 28);
    font-weight: bold;
    margin-bottom: 15px;
}

.popuphead i {
    margin-right: 6px;
    color: rgb(0, 123, 255);
}

.inputbox3 {
    background-color: rgba(255, 255, 255, 0.894);
    padding: 10px 15px;
    border: 2px solid rgb(0, 209, 63);
    border-radius: 8px;
    width: 100%;
    font-size: 14px;
    margin-bottom: 12px;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    outline: none;
    transition: transform 0.2s, box-shadow 0.3s;
}

.inputbox3:hover {
    background: linear-gradient(145deg, rgb(243, 243, 243), rgb(255, 255, 255));
    border-color: rgb(51, 181, 255);
}

.inputbox3:focus {
    transform: scale(1.05);
    border-color: rgba(83, 45, 255, 0.914);
    background: linear-gradient(145deg, rgb(243, 243, 243), rgb(226, 226, 226));
}

.inputbox3::placeholder {
    color: rgba(65, 65, 65, 0.886);
    font-style: italic;
    font-family: cursive;
}

.textareafeedback {
    background-color: rgba(255, 255, 255, 0.894);
    padding: 10px;
    border: 2px solid rgb(0, 209, 63);
    border-radius: 8px;
    width: 100%;
    resize: none;
    font-family: Arial, sans-serif;
    font-size: 14px;
    min-height: 100px;
    box-sizing: border-box;
    outline: none;
    transition: transform 0.2s, box-shadow 0.3s;
    margin-bottom: 12px;
}

.textareafeedback:hover {
    background: linear-gradient(145deg, rgb(243, 243, 243), rgb(255, 255, 255));
    border-color: rgb(51, 181, 255);
}

.textareafeedback:focus {
    transform: scale(1.05);
    border-color: rgba(83, 45, 255, 0.914);
    background: linear-gradient(145deg, rgb(243, 243, 243), rgb(226, 226, 226));
}

.textareafeedback::placeholder {
    color: rgba(65, 65, 65, 0.886);
    font-style: italic;
    font-family: cursive;
}

.buttonfeedback {
    width: 100%;
    padding: 12px;
    background-color: rgba(1, 164, 6, 0.69);
    color: white;
    border: 2px solid white;
    border-radius: 30px;
    cursor: pointer;
    font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
    font-weight: bold;
    font-size: 16px;
    box-shadow: rgba(0, 0, 0, 0.2) 5px 10px 8px;
    transition: background-color 0.3s, color 0.3s, transform 0.2s;
}

.buttonfeedback:hover {
    background-color: rgba(255, 255, 255, 0.74);
    color: green;
    border-color: green;
    transform: scale(1.03);
    box-shadow: rgba(86, 255, 34, 0.45) 5px 10px 12px;
}

.error {
    color: red;
    font-weight: bold;
    font-size: 13px;
    text-align: center;
}

.zoom-note {
    background-color: rgb(255, 247, 154);
    color: rgb(217, 0, 0);
    padding: 12px;
    margin-top: 20px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 8px;
    border: 1px solid rgb(217, 0, 0);
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 6px;
}

.stars-container {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: 2s ease-in-out 0s infinite normal none running blink;
    opacity: 0.8;
    z-index: 0;
}

@keyframes blink {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 1;
    }
}

.menu-container {
    position: relative;
}

.line {
    width: 30px;
    height: 5px;
    background-color: whitesmoke;
    transition: transform 1s;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    cursor: pointer;
    transition: transform 2s;
    margin-left: 1980%;
    margin-top: -6%;
}

.line:hover {
    background-color: blue;
}

.hamburger.rotate {
    transform: rotate(130deg);
}

.hamburger.rotate .line:nth-child(1) {
    transform: translateY(8px) rotate(5deg);
}

.hamburger.rotate .line:nth-child(2) {
    opacity: 0;
}

.hamburger.rotate .line:nth-child(3) {
    transform: translateY(-8px) rotate(-80deg);
}

.menu-options {
    display: none;
    width: 100px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.247);
    color: white;
    padding: 10px;
    position: absolute;
    top: 42px;
    left: 550px;
    right: 0px;
    font-family: cursive;
    font-weight: bolder;
}

.menu-options ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-direction: column;
}

.menu-options ul li {
    padding: 10px;
    list-style: circle;
}

.menu-options ul li a {
    text-decoration: none;
    color: white;
    display: block;
}

.menu-options ul li a:hover {
    text-decoration: underline;
    color: rgb(203, 224, 255);
}

.popuphead {
    color: brown;
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 2rem;
    font-style: italic;
    font-size: larger;
    text-align: center;
    font-family: cursive;
    font-weight: bolder;
    overflow: hidden;
    white-space: nowrap;
    width: 0px;
    animation: 2s steps(30) 0.1s 1 normal forwards running typing, 0.05s step-end 0s infinite normal none running blinkCaret;
}

@keyframes typing {
    100% {
        width: 100%;
    }
}

@keyframes blinkCaret {
    50% {
        border-color: transparent;
    }
}

@keyframes dropDown {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

.welcome-message {
    position: fixed;
    top: 15%;
    left: 87%;
    color: rgb(4, 173, 29);
    animation: 4s ease 0s infinite alternate none running colorFade;
    background-color: white;
    font-family: cursive;
    font-weight: bolder;
    font-style: italic;
    padding: 15px 25px;
    font-size: 16px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.624) 5px 14px 10px;
    display: none;
}

.fixed-logo {
    position: fixed;
    top: 415px;
    right: 20px;
    z-index: 1000;
    text-decoration: none;
    color: rgba(255, 254, 254, 0.71);
    font-size: large;
    font-family: cursive;
    font-weight: bolder;
}

.fixed-logo img {
    width: 70px;
    height: auto;
    cursor: pointer;
}

.fixed-logo:hover {
    color: rgb(205, 255, 130);
}

.left {
    margin-left: 2%;
}

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 60px;
    background: radial-gradient(circle, rgb(102, 156, 206) 0%, rgba(139, 193, 237, 0.416) 50%);
    border-radius: 10cap 10cap 10cap 10cap / 10cap 10cap 10cap 10cap;
    border-width: 10px;
    box-shadow: rgba(0, 0, 0, 0.274) 5px 30px 5px 2px;
    margin-top: 0.5%;
}

nav ul {
    display: flex;
    justify-content: center;
    margin-left: 170%;
    margin-top: 1%;
    font-size: 14px;
}

nav ul li {
    list-style: none;
    margin: 2% 23px 0px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bolder;
}

nav ul li a:hover {
    text-decoration: underline;
    color: rgb(235, 235, 235);
}

.anchor {
    transition: transform 0.5s, opacity 0.5s, box-shadow 0.6s;
}

.anchor:hover {
    opacity: 1.5;
    box-shadow: rgba(255, 255, 255, 0.463) 0px 20px 40px -1px;
}

/* nav ul li .aboutfirst:hover {
    color: yellow;
    font-style: italic;
    font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

nav ul li .servicesfirst:hover {
    color: brown;
    font-style: italic;
    font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

nav ul li .skillsfirst:hover {
    color: rgb(112, 2, 255);
    font-style: italic;
    font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

nav ul li .projectsfirst:hover {
    color: rgb(247, 195, 130);
    font-style: italic;
    font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

nav ul li .contactfirst:hover {
    color: greenyellow;
    font-style: italic;
    font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
} */

.firstsection {
    display: flex;
    justify-content: space-around;
    margin: 23px 0px;
    align-items: center;
}

.firstsection div {
    width: 30%;
}

.leftsection {
    font-size: 2.6rem;
    width: 34px;
    box-shadow: rgba(0, 0, 0, 0.333) 20px 30px 10px 12px;
    border-radius: 5%;
    padding: 2%;
}

.leftsection h3,
h5 {
    color: rgba(255, 255, 255, 0.74);
}

.Photographer {
    font-size: xx-large;
    font-style: italic;
    color: rgba(255, 230, 175, 0.78);
    font-family: "Courier New", Courier, monospace;
}

.pv {
    font-size: xx-large;
    font-style: italic;
    color: rgba(255, 230, 175, 0.78);
    font-family: "Courier New", Courier, monospace;
}

.CoderWebDeveloper {
    font-size: xx-large;
    font-style: italic;
    color: rgba(167, 5, 48, 0.816);
    font-family: cursive;
    font-weight: 800;
}

.rightsection img {
    width: 50%;
    margin: 50px 0px 50px 30%;
    padding: 1px;
    border-radius: 10px;
    /* border: solid rgba(255, 251, 129, 0.384); */
    background-image: linear-gradient(rgba(212, 212, 212, 0.643));
    box-shadow: rgba(255, 234, 170, 0.718) 1px 1px 200px -5px;
    transition: filter 0.4s, transform 0.3s;
    box-shadow: rgba(0, 0, 0, 0.408) 20px 30px 10px 12px;
}

@keyframes borderAnimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes borderAnimation {
    0% {
        background-position: 100% 0%;
    }

    25% {
        background-position: 0% 100%;
    }

    50% {
        background-position: 100% 100%;
    }

    75% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 0%;
    }
}

.d-flex {
    margin-left: 35%;
}

.namecolour {
    font-family: cursive;
    color: rgb(187, 255, 104);
}

.PORTFOLIO {
    color: rgb(255, 251, 0);
    font-style: italic;
    font-family: serif;
}

.element {
    color: rgb(102, 0, 255);
    font-style: italic;
    font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

.secondsection {
    max-width: 80vw;
    margin: auto;
    height: 80vh;
}

main hr {
    border-color: rgb(59, 251, 0) blue rgb(255, 251, 0);
    border-radius: 20cap 20cap 20cap 20cap / 20cap 20cap 20cap 20cap;
    border-width: 1cap 1cap 1cap 1cap;
    background-image: url("portfoliobgimage.gif");
    background-size: contain;
    height: 10cap;
    margin: 80px 10px;
    box-shadow: rgba(0, 0, 0, 0.187) 5px 50px 5px 2px;
}

@keyframes colorShadow {
    0% {
        box-shadow: rgba(145, 255, 0, 0.48) 0px 0px 20px 10px;
    }

    25% {
        box-shadow: rgba(121, 2, 248, 0.565) 0px 0px 20px 10px;
    }

    50% {
        box-shadow: rgba(251, 255, 247, 0.8) 0px 0px 20px 10px;
    }

    75% {
        box-shadow: rgba(0, 51, 255, 0.643) 0px 0px 20px 10px;
    }

    100% {
        box-shadow: rgba(255, 238, 0, 0.584) 0px 0px 20px 10px;
    }
}

.secondsection h1 {
    font-size: 1.7rem;
    color: rgba(47, 255, 0, 0.784);
    margin-left: 25%;
}

.namecolourtwo {
    color: rgba(245, 245, 245, 0.937);
    margin-left: 39%;
    font-size: small;
}

.secondsection .box {
    background: linear-gradient(to right, rgb(255, 255, 255), rgb(40, 255, 129), rgb(71, 151, 255), yellow);
    width: 75vw;
    height: 5px;
    margin: 100px 30px;
    display: flex;
    box-shadow: rgba(0, 0, 0, 0.187) 5px 50px 5px 2px;
    animation: 6s ease-in-out 0s infinite normal none running colorShadow2;
}

@keyframes colorShadow2 {
    0% {
        box-shadow: rgba(255, 255, 255, 0.675) 0px 0px 20px 10px;
    }

    25% {
        box-shadow: rgba(40, 255, 130, 0.675) 0px 0px 20px 10px;
    }

    50% {
        box-shadow: rgba(71, 151, 255, 0.72) 0px 0px 20px 10px;
    }

    75% {
        box-shadow: rgba(255, 255, 0, 0.596) 0px 0px 20px 10px;
    }

    100% {
        box-shadow: rgba(255, 199, 199, 0.584) 0px 0px 20px 10px;
    }
}

.secondsection .vertical {
    height: 90px;
    width: 2px;
    background: gold;
    margin: 0px 100px 0px 8.5%;
    box-shadow: rgba(255, 255, 255, 0.365) 0px 0px 20px 10px;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.187) 5px 10px 5px 2px;
}

.secondsection .vertical::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    height: 12px;
    width: 12px;
    background-color: rgba(255, 255, 255, 0.84);
    border-radius: 50%;
    box-shadow: rgb(0, 0, 0) 0px 0px 10px;
    box-shadow: rgba(0, 0, 0, 0.187) 5px 50px 5px 2px;
}

.image-top {
    width: 80px;
    position: relative;
    top: -70px;
    left: -40px;
}

.vertical-title {
    position: relative;
    top: 25px;
    width: 150px;
    left: -30px;
    font-size: 21px;
}

.vertical-desc {
    position: relative;
    top: 40px;
    width: 150px;
    font-size: 10px;
    color: rgb(133, 133, 133);
    left: -30px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    box-shadow: rgba(0, 0, 0, 0.187) 5px 50px 5px 2px;
}

.image-top2 {
    width: 70px;
    position: relative;
    top: -55px;
    left: -30px;
}

.vertical-title2 {
    position: relative;
    top: 40px;
    width: 180px;
    left: -50px;
    font-size: 19px;
}

.vertical-desc2 {
    position: relative;
    top: 61px;
    width: 150px;
    font-size: 10px;
    color: rgb(133, 133, 133);
    left: -30px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.image-top3 {
    width: 110px;
    position: relative;
    top: -85px;
    left: -45px;
}

.vertical-title3 {
    position: relative;
    top: -10px;
    width: 180px;
    left: -50px;
    font-size: 21px;
}

.vertical-desc3 {
    position: relative;
    top: 40px;
    width: 150px;
    font-size: 9px;
    color: rgb(133, 133, 133);
    left: -30px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.image-top4 {
    width: 140px;
    position: relative;
    top: -80px;
    left: -70px;
}

.vertical-title4 {
    position: relative;
    top: 22px;
    width: 180px;
    left: -25px;
    font-size: 20px;
}

.vertical-desc4 {
    position: relative;
    top: 40px;
    width: 150px;
    font-size: 9px;
    color: rgb(133, 133, 133);
    left: -30px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.image-top5 {
    width: 100px;
    position: relative;
    top: -55px;
    left: -40px;
}

.vertical-title5 {
    position: relative;
    top: 50px;
    width: 180px;
    left: -9px;
    font-size: 20px;
}

.vertical-desc5 {
    position: relative;
    top: 40px;
    width: 150px;
    font-size: 10px;
    color: rgb(133, 133, 133);
    left: -9px;
    font-style: italic;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.container2 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.left-section2 {
    flex: 1 1 0%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -5%;
}

.left-section2 img {
    margin-top: -40%;
    width: 100%;
    height: auto;

}

.right-section2 {
    flex: 1 1 0%;
    margin-top: -10%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: 1.5s linear 0s infinite normal none running flicker;
}

@keyframes flicker {
    0% {
        opacity: 1;
    }

    10% {
        opacity: 0.5;
    }

    20% {
        opacity: 0.9;
    }

    30% {
        opacity: 0.3;
    }

    40% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }

    60% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

.button2 {
    text-decoration: none;
    font-family: cursive;
    font-weight: bolder;
    font-style: italic;
    padding: 10px 20px;
    font-size: 26px;
    cursor: pointer;
    background-color: rgb(76, 175, 80);
    border: solid aqua;
    color: white;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.2) 10px 40px 6px 5px;
    transition: transform 0.5s, opacity 0.5s, box-shadow 0.6s;
}

.button2:hover {
    box-shadow: rgba(255, 255, 255, 0.576) 0px 0px 4px 8px;
    transform: scale(1.05);
    font-weight: bolder;
    border-radius: 2rem;
    background-color: rgb(83, 215, 89);
}

.gallery {
    margin-top: -10%;
    margin-left: 10%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
    padding: 16px;
    max-width: 1100px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: rgba(255, 255, 255, 0.694) 10px 4px 8px;
    transition: transform 0.3s ease-in-out;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease-in-out;
}

.gallery-item:hover img {
    transform: scale(1.5);
}

.footer-first,
.datetime {
    animation: 4s ease 0s infinite alternate none running textColorChange;
}

@keyframes textColorChange {
    0% {
        color: rgb(255, 224, 224);
    }

    25% {
        color: rgb(221, 255, 211);
    }

    50% {
        color: whitesmoke;
    }

    75% {
        color: rgb(254, 249, 205);
    }

    100% {
        color: white;
    }
}

.footer-rights {
    color: rgb(213, 213, 213);
}

.footerhr {
    border: 0px;
    height: 4px;
    background: linear-gradient(to right, rgb(255, 255, 255), rgb(40, 255, 129), rgb(71, 151, 255), yellow);
    margin: 1px 0px;
}

footer {
    height: 90%;
    margin-top: -7.5%;
}

.footer {
    display: flex;
    padding: 23px 122px;
    justify-content: space-evenly;
}

.footer ul {
    list-style: none;
}

.footer>div {
    width: 223px;
}

footer .footer-rights {
    text-align: center;
    font-size: 15px;
    margin-top: 2%;
    padding: 2px 0px;
}

.btnone {
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.765);
    color: rgb(0, 115, 255);
    border: 2px solid gold;
    border-radius: 10px;
    font-size: 25px;
    margin-left: 10%;
    margin-top: 1%;
    transition: transform 0.5s, opacity 0.5s, box-shadow 0.6s;
    cursor: pointer;
    font-weight: bold;
    box-shadow: rgba(0, 0, 0, 0.41) 10px 15px 15px 5px;
}

.btnone:hover {
    transform: scale(1.1);
    border-color: rgb(0, 115, 255);
    opacity: 1.5;
    text-decoration: underline;
    background-color: rgba(255, 255, 255, 0.918);
}

.btntwo {
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.765);
    color: rgba(0, 0, 0, 0.792);
    border: 2px solid gold;
    border-radius: 2rem;
    font-size: 25px;
    transition: transform 0.5s, opacity 0.5s, box-shadow 0.6s;
    cursor: pointer;
    font-weight: bold;
    box-shadow: rgba(0, 0, 0, 0.41) 10px 15px 15px 5px;
}

.btntwo:hover {
    transform: scale(1.1);
    border-color: black;
    opacity: 1.5;
    text-decoration: underline;
    background-color: rgba(255, 255, 255, 0.918);
}

.anchor2 {
    transition: transform 0.5s, opacity 0.5s, box-shadow 0.6s;
}

.anchor2:hover {
    opacity: 1.5;
    box-shadow: rgba(255, 255, 255, 0.463) 0px -20px 40px -1px;
}

footer ul li a {
    text-decoration: none;
    color: white;
    font-weight: bolder;
}

footer ul li a:hover {
    text-decoration: underline;
    color: rgb(235, 235, 235);
}

/* 
.home:hover {
    font-style: italic;
    color: rgb(98, 0, 210);
}

.about:hover {
    font-style: italic;
    color: yellow;
}

.services:hover {
    font-style: italic;
    color: brown;
}

.contacts:hover {
    font-style: italic;
    color: rgb(145, 23, 23);
} */

.footer-first {
    color: rgb(0, 30, 255);
    margin-top: 5%;
    font-family: cursive;
}

.footer-third {
    margin-left: 5%;
}

/* .facebook:hover {
    font-style: italic;
    color: rgb(0, 64, 255);
}

.instagram:hover {
    font-style: italic;
    color: rgb(254, 98, 0);
}

.linkedin:hover {
    font-style: italic;
    color: rgba(29, 106, 231, 0.5);
}

.Collaborate:hover {
    font-style: italic;
    color: rgb(109, 255, 46);
}

.email:hover {
    font-style: italic;
    color: rgb(185, 185, 185);
}

.contactfist:hover {
    font-style: italic;
    color: greenyellow;
} */

.photoes {
    margin-left: 90%;
}

.hidden {
    display: none !important;
}

.label {
    width: 76px;
    height: 35px;
    position: relative;
    display: block;
    background: rgb(235, 235, 235);
    border-radius: 300px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 5px 15px inset, rgba(255, 255, 255, 0.4) 0px -5px 15px inset;
    cursor: pointer;
    transition: 3s;
    margin-left: 35%;
}

.label::after {
    content: "";
    width: 31px;
    height: 27px;
    position: absolute;
    top: 4px;
    left: 3.5px;
    background: linear-gradient(rgb(255, 204, 137), rgb(216, 134, 11));
    border-radius: 180px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 10px;
    transition: 1s;
}

.input {
    width: 0px;
    height: 0px;
    visibility: hidden;
}

.input:checked+.label {
    background: rgb(59, 59, 59);
}

.input:checked+.label::after {
    left: 70px;
    transform: translateX(-90%);
    background: linear-gradient(gold, rgb(100, 98, 98));
}

.label:active::after {
    width: 180px;
    border: solid;
    border-radius: 10px;
}

.backgroundcolour {
    width: 98.8vw;
    height: 540vh;
    z-index: -1;
    position: absolute;
    transition: 1s;
    /* top: 9%; */
}

.input:checked+.label+.backgroundcolour {
    background: black;
}

.label svg {
    position: absolute;
    width: 20px;
    top: 20%;
    z-index: 100;
}

.label svg.sun {
    left: 8px;
    fill: white;
    transition: 5s;
}

.label svg.moon {
    left: 50px;
    fill: grey;
    transition: 8s;
}

.input:checked+.label svg.sun {
    fill: whitesmoke;
    transition: 15s;
}

.input:checked+.label svg.moon {
    fill: whitesmoke;
    transition: 5s;
}

.ForPhoto {
    width: 25vw;
    transition: transform 0.5s, opacity 0.5s, box-shadow 0.6s;
    cursor: pointer;
}

.ForPhoto:hover {
    zoom: 0;
    transform: scale(1.1);
    border-color: gold;
    opacity: 1.5;
    box-shadow: rgba(255, 255, 255, 0.537) 5px 10px 20px 20px;
    background-color: rgba(255, 255, 255, 0.537);
}

.ForPhoto2 {
    width: 25vw;
    transition: transform 0.5s, opacity 0.5s, box-shadow 0.6s;
    cursor: pointer;
    margin-top: 50%;
    margin-left: 10%;
}

.ForPhoto2:hover {
    zoom: 0;
    transform: scale(1.1);
    border-color: gold;
    opacity: 1.5;
    box-shadow: rgba(255, 255, 255, 0.537) 5px 10px 20px 20px;
    background-color: rgba(255, 255, 255, 0.537);
}

@media screen and (max-width: 920px) {
    .box {
        flex-direction: column;
    }

    nav {
        flex-direction: column;
        height: 125px;
        justify-content: space-between;
        align-items: center;
        padding: 5px;
        background: radial-gradient(circle, rgba(102, 156, 206, 0.59) 0%, rgba(139, 193, 237, 0.22) 50%);
        border-radius: 2cap 2cap 2cap 2cap / 2cap 2cap 2cap 2cap;
        box-shadow: 5px 50px 6px 2px rgba(0, 0, 0, 0.21);
        margin-top: 5%;
        /* border:solid; */
    }

    nav ul {
        display: flex;
        justify-content: center;
        margin-left: 3%;
        margin-top: -40%;
    }

    nav ul li a {
        font-size: 12px;
    }

    .firstsection {
        margin-top: 1%;
    }

    .secondsection .vertical {
        height: unset;
    }

    .right ul li {
        font-size: x-small;
        font-weight: 900;
        margin-top: 2%;
        margin-left: 4%;
    }

    .left {
        margin-top: 1%;
    }

    .secondsection h1 {
        font-size: 12px;
        margin-left: 13%;
    }

    .namecolour {
        font-family: auto;
    }

    .namecolourtwo {
        font-size: x-small;
        margin-left: 30%;
    }

    .vertical-title,
    .vertical-desc,
    .vertical-title2,
    .vertical-desc2,
    .vertical-title3,
    .vertical-desc3,
    .vertical-title4,
    .vertical-desc4,
    .vertical-title5,
    .vertical-desc5 {
        left: 100px;
    }

    .vertical-title {
        margin-top: -20px;
    }

    .vertical-title2 {
        margin-top: -15px;
    }

    .vertical-title3 {
        margin-top: 40px;
    }

    .vertical-title4 {
        margin-top: 15px;
    }

    .vertical-title5 {
        margin-top: -15px;
    }

    .secondsection .vertical {
        min-height: 120px;
        margin-top: 3px;
    }

    .secondsection .box {
        height: 4px;
        margin-top: 2%;
    }

    .btnone {
        margin-bottom: 2%;
    }

    .buttons {
        margin-left: 17%;
    }

    .leftsection {
        margin-top: -15%;
        font-size: 15px;
        padding: 20px;
        border-radius: 5%;
        margin-left: -2%;
    }

    .rightsection {
        margin-right: 5%;
    }

    .rightsection img {
        width: 100%;
        margin: 50px 0px 90% 20%;
        border-radius: 8px;
    }

    .image-top {
        top: 60px;
        left: 0px;
        width: 80px;
    }

    .image-top2 {
        top: 80px;
        left: 20px;
    }

    .image-top3 {
        top: 80px;
        left: 15px;
        width: 80px;
    }

    .image-top4 {
        width: 120px;
        top: 80px;
        left: 0px;
    }

    .image-top5 {
        top: 100px;
        left: 5px;
    }

    .vertical-title5 {
        position: relative;
        top: 70px;
        width: 180px;
        left: 100px;
        font-size: 20px;
    }

    .Photographer {
        font-size: medium;
        font-style: italic;
        color: blueviolet;
        font-family: "Courier New", Courier, monospace;
    }

    .pv {
        font-size: small;
        font-style: italic;
        display: inline-block;
    }

    .coder {
        font-size: small;
        font-style: italic;
        color: rgb(190, 12, 59);
        font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
        font-weight: 800;
    }

    footer {
        margin-top: 0%;
    }

    .footer {
        margin-top: -10%;
        display: flex;
        padding: 2px 1px;
        justify-content: space-between;
        height: 45vh;
    }

    .footer-first h3 {
        margin-left: 90%;
        font-size: medium;
    }

    .footer-third {
        margin-left: 0%;
        font-size: large;
    }

    .footer-fourth {
        margin-right: 5%;
        font-size: large;
    }

    .backgroundcolour {
        height: 286vh;
        z-index: -1;
        position: absolute;
        transition: 1s;
        margin-top: -10%;
        width: 115%;
    }

    .ForPhoto {
        margin-left: 16%;
        width: 60vw;
    }

    .ForPhoto:hover {
        zoom: 0.9;
    }

    .fixed-logo {
        position: fixed;
        top: 350px;
        z-index: 10;
        text-decoration: none;
        color: white;
        font-size: x-small;
        font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
        font-weight: bolder;
        margin-right: 45%;
    }

    .fixed-logo:hover {
        font-size: small;
    }

    .fixed-logo img {
        margin-top: 77%;
        width: 70px;
        height: auto;
        cursor: pointer;
    }

    .CoderWebDeveloper {
        font-size: 17px;
        font-family: auto;
    }

    .welcome-message {
        position: fixed;
        top: 5%;
        left: 60%;
        font-family: sans-serif;
    }

    .footer-first {
        font-family: cursive;
        margin-left: 10%;
        margin-top: 50%;
    }

    .footer-third,
    .footer-fourth {
        margin-top: 10%;
    }

    .container2 {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .left-section2 {
        flex: 1 1 0%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .left-section2 img {
        margin-top: 40%;
        width: 120%;
        height: auto;
    }

    .right-section2 {
        flex: 1 1 0%;
        margin-top: 30%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .button2 {
        font-family: sans-serif;
        padding: 5px 8px;
        font-size: 20px;
    }

    main hr {
        border-color: rgb(59, 251, 0) blue rgb(255, 251, 0);
        border-radius: 5cap 5cap 5cap 5cap / 5cap 5cap 5cap 5cap;
        border-width: 1cap 1cap 1cap 1cap;
        background-image: url("portfoliobgimage.gif");
        background-size: cover;
        height: 15cap;
        width: 34cap;
        margin: 84px -10px;
        box-shadow: rgba(0, 0, 0, 0.187) 25px 40px 10px 5px;

    }

    .datetime {
        margin-left: 25%;
        font-family: fangsong;
        font-size: x-small;
    }

    .hamburger {
        margin-top: -360%;
        margin-left: 525%;
    }

    .menu-options {
        margin-top: 280%;
        margin-left: -450%;
    }

    .menu-options {
        width: 130px;
        border-radius: 10px;
        background-color: rgba(0, 0, 0, 0.53);
        color: white;
        padding: 30px;
        position: absolute;
        margin-top: -115px;
        left: 140px;
        right: 0px;
        font-family: cursive;
        font-weight: bolder;
        border: solid rgb(179, 179, 179);
    }

    .menu-options ul {
        list-style: none;
        padding: 0px;
        margin: 7px 0px 0px;
        display: flex;
        flex-direction: row;
    }

    .menu-options ul li {
        padding: 1px;
        list-style: none;
        margin-top: -20%;
        margin-left: -2%;
    }

    .menu-options ul li a {
        text-decoration: none;
        color: white;
        display: block;
        margin-left: 25%;
        font-family: auto;
        font-size: 13px;
    }

    .label {
        margin-top: -55%;
        margin-left: 50%;
        width: 75px;
        height: 35px;
        position: relative;
        display: block;
        background: rgb(235, 235, 235);
        border-radius: 300px;
        box-shadow: rgba(0, 0, 0, 0.4) 0px 5px 15px inset, rgba(255, 255, 255, 0.4) 0px -5px 15px inset;
        cursor: pointer;
        transition: 3s;
    }

    .PORTFOLIO {
        font-size: 13px;
    }

    .left {
        margin-top: 25%;
        margin-left: -40%;
    }

    .footerhr {
        margin-top: -9%;
    }

    .footer ul {
        margin-top: 10%;
    }

    .modal-content {
        border-radius: 10px;
        max-width: 300px;
        margin-right: 5%;
    }

    .inputbox3::placeholder {
        font-style: italic;
        font-family: auto;
    }

    .textareafeedback::placeholder {
        font-style: italic;
        font-family: auto;
    }

    .popuphead {
        font-family: revert;
    }

    .secondsection {
        max-width: 80vw;
        margin: auto;
        height: 80vh;
    }

    footer .footer-rights {
        text-align: center;
        font-size: 15px;
        margin-top: -20%;
        padding: 2px 0px;
    }
    
}