@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}   

body {
    display: grid;
    grid-template-rows: auto auto;
    overflow-x: hidden;
    width: 100%;
}

.infoContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.infoContainer p {
    font-size: 18px;
    text-align: center;
}

/* Navbar */
.header {
    top: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 100px;
    z-index: 9999;
}

.name {
    color: rgb(40, 140, 200);
    user-select: none;
    font-size: 40px;
}

/* .kleyr-logo {
    width: 100%;
    height: auto;
    max-width: 100px;
} */

.navbar a {
    position: relative;
    color: rgb(36, 36, 36);
    text-decoration: none;
    font-size: 20px;
    margin-left: 2rem;
    transition: 500ms;
    z-index: 100;
}

.navbar a:hover {
    color: rgba(40, 140, 200);
}

.navbar a::after {
    content: "";
    position: absolute;
    background-color: rgb(40, 140, 200);
    height: 3px;
    width: 0%;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.navbar a:hover::after {
    width: 100%;
}

.icons {
    font-size: 40px;
    color: rgb(36, 36, 36);
    cursor: pointer;
    display: none;
    right: 0;
    margin-left: auto;
}

#check {
    display: none;
}

/* NAVBAR FIXED WHEN SCROLL */
.navbarstick {
    position: relative;
}

.navbarstick.navbarsticked {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: white;
    box-shadow: 0px 0px 10px rgba(36, 36, 36, 0.5);
    transition: top 0.3s;
}

/* NAVBAR BACKGROUND OVERLAY */

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgb(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 5000;
}

#check:checked ~ .overlay {
    opacity: 1;
    visibility: visible;
}

/* Intro */

.introcont {
    justify-content: center;
    align-items: center;
    display: flex;
    width: 100%;
    margin-top: 20vh;
    margin-bottom: 10rem;
}

.gridContainer {
    align-items: center;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* gap: 4vw; */
}

.introduction {
    position: relative;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    width: 45rem;
    /* width: auto;
    max-width: 900px; */
    flex-direction: column;
}   

.intro {
    position: relative;
    margin-top: 50px;
    max-width: 680px;
    user-select: none;
}

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

.introImg {
    width: 100%;
    max-width: 500px;   
    height: auto;
    object-fit: contain;
}

.intro h1 {
    font-size: 40px;
}

.allbtn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3em;
}

.iconlinks {
    font-size: 40px;
}

.iconlinks a {
    text-decoration: none;
    color: black;
    transition: 0.5s ease;
}

.iconlinks a:hover {
    color: rgb(40, 140, 200);
}


.introbtn {
    border: 2px solid rgb(36, 36, 36);
    color: rgb(36, 36, 36);
    text-decoration: none;
    background-color: transparent;
    overflow: hidden;
    border-radius: 10px;
    padding: 10px;
    position: relative;
    font-size: 15px;
    font-weight: bold;
    transition: 0.5s ease;
}


.introbtn:hover {
    box-shadow: inset 400px 0 rgb(40, 140, 200);
    border: 2px solid rgb(40, 140, 200);
    color: rgb(240, 240, 240);
    cursor: pointer;
} 

.spanname {
    color: rgb(40, 140, 200);
}

.introdesc {
    font-size: 25px;
    width: 100%;
    margin: auto;
    position: relative;
    padding-bottom: 50px;
    justify-content: center;
    text-align: center;
}

/* ABOUT */

.about {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    margin-bottom: 100px;
}

.aboutcont {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.aboutIntro, .techstackCont {
    display: flex;
    flex-direction: column;
    margin: 0em 10vw;
    gap: 2rem;
}

.aboutdesc h1 {
    color: rgb(40, 140, 200);
    font-size: 60px;
    margin-bottom: 20px;
    user-select: none;
}

.aboutdesc p {
    text-align: left;
    font-size: 20px;
    width: 65%;
    line-height: 1.5;
}

.aboutdetail td{
    font-size: 20px;
}

.dtlbold {
    font-weight: bold;
    padding: 5px 10px 5px;
}

/* TECH STACK */

.techstackCont {
    display: flex;
    flex-direction: column;
    gap: 2em;
    align-items: center;
}

.techstackCont h2 {
    color: rgb(40, 140, 200);
    font-size: 50px;
    text-align: center;
    user-select: none;
}

.skillsCont {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    gap: 1.5vw;
}

.skillsCont h3{
    user-select: none;
}

.skillsIcon {
    font-size: 80px;
}

.techName, .otherTechName {
    display: flex;
    gap: 0.5em;
    flex-direction: column;
    align-items: center;
}

.techName h3 {
    display: flex;
    text-align: center;
    align-items: center;
}

.otherTechName h3 {
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    white-space: nowrap;
}

.otherTechName img {
    width: 80px;
    margin-right: 5px;
}

.skillsCard {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 10rem;
    height: 10rem;
    border: 2px solid black;
    border-radius: 20px;
    transform: translateY(20px);
    transition: 0.5s ease;
}

.skillsCard:hover {
    background-color: rgba(124, 198, 243, 0.9);
    transform: translateY(10px);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
    transition: 0.3s ease-in;
}

/* .skillsCard {
    padding: 10px;
    margin: 10px;
} */

/* .skillsOtherCard {
    display: flex;
    flex-wrap: wrap;
} */

/* .skillBar1 {
    background-color: rgb(40, 140, 200);    
    height: 20px;
    width: 200px;
}

.skillBar2 {
    background-color: rgb(40, 140, 200);
    height: 20px;
    width: 50px;
}

.skillBar3 {
    background-color: rgb(40, 140, 200);
    height: 20px;
    width: 0px;
}

.skillBar1::after, .skillBar2::after, .skillBar3::after {
    content: "";
    position: absolute;
    background-color: rgba(36, 36, 36, 0.15);
    height: 20px;
    width: 250px;
} */

/* THE GOALS */
.myGoals {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5rem;
    margin-bottom: 5rem;
    gap: 4rem;
}

.goalContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.goalCards {
    background: rgb(40, 140, 200);
    width: 10rem;
    height: 10rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.goalIcons {
    font-size: 6rem;
    color: white;
}

.goalContainer p {
    width: 25rem;
    font-size: 20px;
    text-align: center;
}

/* MY WORKS */

.myWorkContainer {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: auto;
    background-color: rgb(240, 240, 240);
    padding: 2em 0em;
    margin-bottom: 5rem;
    z-index: 0;
}

.container {
    display: flex;
    flex-direction: column;
    gap: 2em;
}

.titleProjectSeparate {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cardtitle {
    color: rgb(40, 140, 200);
    font-size: 60px;
    display: flex;
    justify-content: center;
    align-items: center;    
    user-select: none;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.text-cards {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5));
    box-shadow: 2px 2px 4px rgba(36, 36, 36, 0.3);
    color: white;
    margin: 10px;
    padding: 10px;
    width: 350px;
    border-radius: 5px;
    overflow: hidden;
}

.text-cards:hover {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
}

.text-cards .cardTitle {
    color: rgb(240, 240, 240);
    font-size: 35px;
    text-align: center;
    margin-bottom: 5px;
    transition: 0.3s ease;
    user-select: none;
}

.text-cards:hover .cardTitle{
    color: rgb(50, 160, 230);
}

.toHoverButton {
    transform: translateY(65px);
    transition: 0.5s ease;
}

.text-cards:hover .toHoverButton {
    transform: translateY(0px);
    transition: 0.5s ease-out;
}

.cardDescription {
    display: flex;
    flex-direction: column;
    user-select: none;
    margin: 10px 0px;
    gap: 0.2rem;
    text-align: center;
    transform: translateY(20px);
    transition: 0.3s ease;
}

.text-cards:hover .cardDescription {
    transform: translateY(0px);
    transition: 0.3s ease-out;
}

.cardDescription p {
    display: flex;
    align-items: center;
    font-weight: bold;
}

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

.cardSkillContainer img{
    width: 45px;
}

.cardDescription .cardSkillIcon {
    font-size: 40px;
}

.imgContainer {
    overflow: hidden;
}

.text-cards .cardsImg {
    width: 100%;
    height: auto;
    filter: blur(2px);
}

.text-cards:hover .cardsImg {
    filter: none;
    transition: 0.40s ease-in-out;
}

.cardsBtnContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
}

.cardsIconBtn {
    font-size: 25px;
}

.cardsBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid white;
    border-radius: 10px;
    padding: 0px 10px;
    height: 2em;
    gap: 0.3em;
    text-decoration: none;
    color: white;
    font-size: 20px;
    transition: 0.3s ease;
}

.cardsBtn:hover{
    color: rgb(40, 140, 200);
    background: rgb(240, 240, 240);
}

.cardsBtn img {
    width: 35px;
}

/* FOR OTHER WORKS */
.otherWorksContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.otherCardTitle {
    font-size: 40px;
    color: rgb(40, 140, 200);
    display: flex;
    justify-content: center;
    align-items: center;    
    user-select: none;
}

.cardsHolder {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
}

.cardsHolderLandscape {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.design-cards {
    box-shadow: 2px 2px 4px rgba(36, 36, 36, 0.3);
    color: white;
    margin: 10px;
    padding: 10px;  
    border-radius: 5px;
    overflow: hidden;
}

.portrait {
    height: 600px;
    max-width: 300px; 
}

.landscape {
    height: 26vw;
    width: 48vw;
}

#designCard1 {
    background-image: url('../css/PICS/1.png');
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
}

#designCard2 {
    background-image: url('../css/PICS/2.png');
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
}

#designCard3 {
    background-image: url('../css/PICS/3.png');
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
}

/* LANDSCAPE CARD SHOWS */

[id^="designCardShow"] {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
    background-size: cover;
    background-position: center;
    z-index: 0;
}


#designCardShow1 { background-image: url('../css/PICS/FoodWebBanner.png');}
#designCardShow2 { background-image: url('../css/PICS/CreamyCafeDark.png'); }
#designCardShow3 { background-image: url('../css/PICS/ShowTastyFoodWebsite.png'); }
#designCardShow4 { background-image: url('../css/PICS/SkillForge.png'); }
#designCardShow5 { background-image: url('../css/PICS/Goalify.png'); }
#designCardShow6 { background-image: url('../css/PICS/FruityCart.png'); }

[id^="designCardShow"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.6));
    opacity: 0;
    transition: opacity 0.3s ease-in;
    z-index: 1;
}

[id^="designCardShow"]:hover::before {
    opacity: 1;
}

.showDesignBtn {
    position: relative;
    top: 5em;
    transform: translate(0%, 200%);
    z-index: 1;
    color: rgb(50, 160, 230);
    font-size: 20px;
    font-weight: bold;
    border: 2px solid rgb(50, 160, 230);
    border-radius: 10px;
    background-color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    opacity: 0;
    transition: 0.4s ease-in;
}

[id^="designCardShow"]:hover .showDesignBtn {
    opacity: 1;
    transform: translate(0%, 20%);
}

[id^="designCardShow"] .showDesignBtn:hover {
    color: white;
    background-color: rgb(50, 160, 230);
}

/* MY CERTIFICATES */
.myCertificates {
    width: 100%;
    height: auto;
    margin-bottom: 5em;
    display: flex;
    gap: 2em;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.myCertificates h1 {
    font-size: 60px;
    color: rgb(40, 140, 200);
    user-select: none;
}

.certificateContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.certificatesHolder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.certificatesHolder h3 {
    color: rgb(40, 140, 200);
    user-select: none;
}

.theCertificates {
    width: auto;
    height: 400px;
    border: 1px solid black;
    transition: 0.5s ease;
}

.theCertificates:hover {
    transform: translateY(-10px);
    box-shadow: 2px 6px 2px rgba(36, 36, 36, 0.3);
}

/* #item1 {
    background-image: url('../css/PICS/freecodecamp.png');
    background-size: cover;
    background-repeat: no-repeat;
} */

/* Contact */
section .contact{
    font-size: 20px;
    background: rgba(36, 36, 36,0.05);
    box-shadow: 2px 0px 4px rgba(36, 36, 36, 0.3);
    padding: 30px 30px;
    width: 100%;
    text-align: center;
    justify-content: center;
}

.contact h1 {
    color: rgb(40, 140, 200);
    font-size: 60px;
    user-select: none;
}

.detailContainer {
    align-items: center;
    text-align: center;
    justify-content: space-evenly;
    display: flex;
    flex-wrap: wrap;
    padding: 2rem;
    margin-top: 4rem;
    gap: 5rem;
    width: 100%;
}

.contactContainer h2 {
    color: rgb(40, 140, 200);
    user-select: none;
}

.contactBody {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contactDetail {
    display: flex;
    align-items: center;
  }

.contactIcon {
    font-size: 40px;
    margin-right: 5px;
}

.socialIcon {
    text-decoration: none;
    color: black;
    font-size: 40px;
    margin-right: 5px;
    transition: 0.4s ease;
}

.socialIcon:hover {
    color: rgb(40, 140, 200);
}

.socialContainer {
    display: flex;
    gap: 1rem;
}

/* .contactfrm {
    margin-bottom: 50px;
} */

/* .cont-desc {
    text-align: center;
    margin-bottom: 20px;
    user-select: none;
} */

/* .cont-desc h1{
    color: rgb(40, 140, 200);
    font-size: 40px;
    margin-bottom: 20px;
} */

/* .cont-inputs {
    flex-direction: column;
    display: flex;
}

.inputdetails {
    margin: 10px;
}

.inputdetails p {
    margin-bottom: 5px;
    font-size: 18px;
    user-select: none;
}

.input{
    font-family: 'Times New Roman', Times, serif;
    width: 380px;
    height: 50px;
    border: 2px solid rgb(40, 140, 200);
    border-radius: 5px;
    padding: 10px;
    font-size: 15px;
}

.comment {
    display: flex;
    position: relative;
    margin: auto;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.comment textarea {
    resize: none;
    padding: 10px;
}

.submitbtn {
    position: absolute;
    margin: 10px;
    color: rgb(36, 36, 36);
    border: 2px solid rgb(36, 36, 36);
    border-radius: 10px;
    right: 140px;
    padding: 10px;
    width: 100px;
    font-size: 15px;
    font-weight: bold;
    transition: 0.5s ease;
}

.submitbtn:hover {
    box-shadow: inset 200px 0 rgb(40, 140, 200);
    border: 2px solid rgb(40, 140, 200);
    color: rgb(240, 240, 240);
    cursor: pointer;
} */

/* Lower Description */
.low-desc {
    background-color: rgba(40, 140, 200, 0.8);
    box-shadow: 2px 0px 4px rgba(36, 36, 36, 0.3);
    align-items: center;
    justify-content: center;
    text-align: center;
    user-select: none;
    padding: 10px;
    width: 100%;
    height: 40px;
}

.low-desc p {
    color: rgb(240, 240, 240);
}

/* REVEAL CONTENTS WHEN SCROLL */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: 0.5s ease-out;
}

/* SMALL SCREENS */
@media screen and (max-width: 992px) { 

    .infoContainer p {
        width: 90%;
    }

/* NAVBAR */
    .header {
        padding: 2vh;
    }

    .name {
        color: rgb(40, 140, 200);
        user-select: none;
        position: relative;
        display: flex;
        justify-content: center;
        text-align: center;
        font-size: 35px;
    }    

    .icons {
        display: inline-flex;
        margin-right: 15px;
    }

    #check:checked~.icons #menu-icon {
        display: none;
    }

    .icons #close-icon {
        display: none;
    }

    #check:checked~.icons #close-icon {
        display: block;
        z-index: 9999;
    }

    .navbar {
        box-shadow: 0 2px 4px rgba(36, 36, 36, 0.3);
        padding-right: 10px;
        position: absolute;
        padding-top: 10rem;
        top: -30%;
        right: 0;
        width: 0;
        background: white;
        overflow: hidden;
        transition: .3s ease;
        opacity: 0;
    }

    #check:checked~.navbar {
        opacity: 1;
        width: 60%;
        height: 100rem;
        z-index: 9998;
    }

    .navbar a {
        font-size: 30px;
        display: block;
        text-align: center;
        margin: 2.3rem;
        transform: translateX(400px);
    }

    #check:checked~.navbar a {
        transform: translateX(0);
        opacity: 1;
        transition-delay: calc(0.20s * var(--i));
    }   

    .navbar a::after {
        display: none;
    }
    
    .navbar a:hover::after {
        display: none;
    }

/* INTRO */

    .introcont {
        position: relative;
        flex-wrap: wrap;
        margin-top: 3em;
        gap: 5rem;
    } 

    .grid-container {
        display: grid;
        grid-template-columns: 1fr;
    }

    .introImgContainer {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .introduction { 
        grid-column: 1 / 3;
        grid-row: 2;
    }

    .introImg {
        width: 20em;
    }

    .intro h1 {
        font-size: 40px;
        margin-top: 20px;
    }

    .introdesc {
        font-size: 25px;
        width: auto;
        margin: auto;
        position: relative;
        display: flex;
        justify-content: center;
        text-align: center;
    }

    .introbtn {

        border-radius: 5px;
        padding: 10px;
        width: 220px;
    }

    .allbtn {
        position: relative;
        display: table-row;
        align-items: center;
        justify-content: center;
    }

    .iconlinks{
        font-size: 50px;
        margin-bottom: 20px;
    }

    .btnlinks a{
        font-size: 15px;
    }

/* ABOUT */

    .about {
        margin-bottom: 0px;
    }


    .aboutIntro, .techstackCont {
        margin: 0em;
    }

    .aboutcont {
        width: 90%;
        gap: 6rem;
        text-align: center;
    }

    .about::after {
        display: none;
    }

    .aboutdesc h1 {
        font-size: 40px;
        margin-bottom: 20px;
        user-select: none;
    }
    
    .aboutdesc p {
        font-size: 20px;
        width: 100%;
    }

    .aboutdetail {
        text-align: left;
        display: flex;
    }

    .aboutdetail td{
        font-size: 20px;
        padding: 5px 10px 10px;
    }

/* THE GOALS */
    .myGoals {
        display: flex;
        flex-wrap: wrap;
        margin-top: 0rem;
        gap: 2rem;
    }
    
    .goalCards {
        width: 8rem;
        height: 8rem;
    }

    .goalIcons {
        font-size: 5rem;
    }

/* TECH STACK */

    .techstackCont h2 {
        font-size: 40px;
    }

    .skillsCont {
        gap: 4vw;
    }

    .skillsIcon {
        font-size: 60px;
    }

    .skillsCard {
        width: 8rem;
        height: 8rem;
        border-radius: 20px;
    }

    .skillsCard img {
        width: 60px;
    }

/* MY WORKS */
    .myWorkContainer {
        margin-top: 5rem;
        margin-bottom: 5em;
    }

    .container {
        padding: auto;
        width: 100%;
    }

    .cards
    {
        display: flex;
    }

    .cardtitle {
        font-size: 40px;
    }

    .landscape {
        height: 320px;
        width: 620px;
    }   

/* MY CERTIFICATES */
.myCertificates h1 {
    font-size: 40px;
}

.certificatesHolder h3{
    font-size: 24px;
}

.certificatesHolder p {
    font-size: 16px;
}

/* CONTACT */

.detailContainer {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.contact h1 {
    font-size: 40px;
}

    /* NAVBAR REVEAL ANIMATION */
    .navbarstick.navbarsticked {
        transition: top 0.2s;
    }
}

@media screen and (max-width: 768px) {
    .introcont {
        flex-wrap: wrap;
        margin-top: 2em;
        margin-bottom: 10rem;
    }

    .introdesc {
        width: 100%;
        font-size: 20px;
    }

    .introImg {
        max-width: 100%;
    }

    .design-cards {
        width: 100%;
    }

    .landscape {
        height: 320px;
        width: 620px;
    }

}

@media screen and (max-width: 480px) {

    .infoContainer p {
        width: 100%;
    }

    /* NAVBAR */
    .header {
        padding: 2vh;
        width: 100%;
    }

    .name {
        color: rgb(40, 140, 200);
        user-select: none;
        font-size: 45px;
    }    

    /* FRONT TEXTS */

    .intro {
        position: relative;
    }

    .introcont {
        margin-top: 15em;
        margin-bottom: 10rem;
        gap: 12rem;
    }

    .intro h1 {
        font-size: 30px;
    }

    .introdesc {
        font-size: 25px;
        width: 450px;
        margin-top: 20px;
        display: flex;
        justify-content: center;
        text-align: center;
    }

    .introbtn {
        border: 2px solid rgb(36, 36, 36);
        color: rgb(36, 36, 36);
        border-radius: 5px;
        padding: 3px;
        width: 250px;
        position: relative;
        display: flex;
        font-weight: normal;
        justify-content: center;
        align-items: center;
        margin-top: 10px;
    }

    .allbtn {
        position: relative;
        display: table-row;
        align-items: center;
        justify-content: center;
    }
        
    .iconlinks {
        display: flex;
        justify-content: center;
        font-size: 70px;
        margin-bottom: 20px;
        gap: 0.5em;
    }

    .btnlinks {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.2em;
    }

    .btnlinks a {
        font-size: 25px;
    }

    /* ABOUT */

    .about {
        display: flex;
        flex-direction: column;
    }

    .aboutcont {
        width: 90%;
        text-align: center;
    }


    .aboutdesc h1 {
        font-size: 40px;
        margin-bottom: 20px;
        user-select: none;
    }
    
    .aboutdesc p {
        font-size: 18px;
        width: 100%;
    }
    
    .aboutdetail td{
        font-size: 18px;
        padding: 5px 10px 10px;
    }

    /* TECH STACK */

    .techstackCont {
        text-align: left;
        position: relative;
    }

    .skillsCont {
        position: relative;
    }

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

    .techstackCont h2 {
        text-align: center;
        font-size: 40px;
    }

    /* MY WORKS */

    .myWorkContainer {
        padding: 2em 0em;
    }
    
    .container {
        width: 100%;
    }

    .cards
    {
        display: flex;
    }

    .cardtitle {
        font-size: 40px;
    }

    .showDesignBtn {
        /* bottom: 25%; */
        font-size: 30px;
        color: rgb(50, 160, 230);
        font-weight: bold;
        background-color: white;
        /* padding: 10px 20px;
        border-radius: 5px; */
    }

    [id^="designCardShow"]:hover .showDesignBtn {
        transform: translate(0%, -200%);
    }

    /* CONTACT */
    .contact {
        margin: auto;
        width: 100%;
    }

    .contact h1 {
        font-size: 40px;
    }


    /* .input{
        font-family: 'Times New Roman', Times, serif;
        width: 280px;
        height: 50px;
        border: 2px solid rgb(40, 140, 200);
        border-radius: 5px;
        padding: 10px;
        font-size: 15px;
    }

    .cont-desc h1{
        font-size: 35px;
    }

    .comment {
        width: 300px;
    }

    .row-up {
        margin-bottom: 20px;
    }

    .submitbtn {
        position: absolute;
        margin: 10px;
        right: 90px;
        padding: 5px;
        width: 100px;
        font-size: 18px;
    } */
}