/* Fonts & Imports */
@font-face {
    font-family: 'Blu';
    src: url(/assets/fonts/BluPurpl-PersonalUse.ttf);
}
@font-face {
    font-family: '##';
    src: url();
}

/* Root */
:root {
    --spinClr: linear-gradient(to right, purple, white, black);
}

/* Body */
body {
    width: 100%;
    position: relative;
}

/* Header */
header {
        width: 100%;
        height: auto;
        position: fixed;
        z-index: 15;
}

/* Navigation */
nav {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    background: black;
    /* background: linear-gradient(
        to bottom,
        #004244, 
        #003b3d,
        #003436,
        #002e2f,
        #002728,
        #002122,
        #001a1b
    ); */
    color: white;
    position: absolute;
    top: 0;
    left: 0;
    /* border: 2px solid red; */
    transition: all 400ms ease-in-out;
}

/* Navigation Bar */
.navbar {
    display: flex;
    align-items: center;
    gap: 2rem;
    opacity: 1;
    position: relative;
    transition: all 400ms ease-in-out;
}
.nav_item {
        width: fit-content;
        display: inline-block;
        font-family: 'Blu', sans-serif;
        font-size: 1rem;
        letter-spacing: .2rem;
        cursor: pointer;
        transition: all 400ms ease-in-out;
}
.nav_item:hover {
    color: rgb(255, 187, 0);
    letter-spacing: .5rem;
}

/* Responsive Hamburger Icon / Responsive Bars Icon */
/* will not show, unless viewport is under  847px */
.nav_icon_open {
    display: none;
    width: 32px;
    height: 32px;
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 1;
    transform: rotate(180deg);
    cursor: pointer;
    transition: all 700ms ease-in-out;
}
.nav_icon_open.show {
    display: none;
    width: 32px;
    height: 32px;
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 1;
    transform: rotate(180deg);
    cursor: pointer;
    transition: all 700ms ease-in-out;
}
.nav_icon_close {
    display: none;
    width: 32px;
    height: 32px;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    opacity: 0;
    transition: all 700ms ease-in-out;
}
.nav_icon_close.show {
    display: none;
    width: 32px;
    height: 32px;
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 1;
    cursor: pointer;
    transition: all 700ms ease-in-out;
}

/*? Do i need this */
/* .nav_links {
    display: flex;
    flex-direction: column;
    align-items:flex-start;
    gap: 2rem;
    font-size: .8rem;
    opacity: 0;
    transition: all 1s ease-in-out;
}
.nav_links a {
    width: fit-content;
    padding: .25rem;
    display: block;
}
.nav_links.show {
    display: flex;
    flex-direction: column;
    align-items:flex-start;
    gap: 2rem;
    font-size: .8rem;
    opacity: 1;
}
.nav_links.show a {
    width: fit-content;
    padding: .25rem;
    display: block;
    transition: all 700ms ease-in-out;
}
.nav_links.show  a:hover {
    transform: scale(120%);
    color: #561b19;
} */

/* Responsive Container */
.responsive {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

/* Test - Title Header, Author */
.test {
    width: 100%;
    height: auto;
    margin: 0 auto 1rem;
    padding: 6rem 2rem 0rem;
}
.test h1 {
    width: 100%;
    height: 100%;
    color: black;
    font-size: 5rem;
    margin: 0 auto;
    text-align: center;
}
.test div h4 {
    text-align: center;
}
.test div span {
    display: block;
    width: 100%;
    text-align: center;
}

/* Hero Section */
/* breaks at 1140px */
.hero {
    width: 100%;
    height: auto;
    margin-right: auto;
    padding: 1rem 4rem;
    display: flex;
    flex-direction: column;
    background: url(/media/images/background/blk_purple.jpg);
    background-size: cover;
    color: white;
    font-size: .8rem;
    font-family: 'Blu', sans-serif;
    letter-spacing: .2rem;
    /* animation: heroSlide linear;
    animation-timeline: view();
    animation-range: entry 20% cover 70%; */
    position: relative;
    z-index: 1;
    /* border: 1px solid red; */
}

/* Hero Slide Animation - DISCONTINUED */
/* @keyframes heroSlide {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
} */

/* Hero Header */
.hero_intro {

}
.hero_title {

}
.hero_title h1 {

}
.hero_title span {

}

/* Hero Content */
.hero_feat {
    width: 100%;
    height: auto;
    margin: 1rem auto;
    padding: .5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    /* border: 2px solid red; */
}
.hero_feat_title {
    display: flex;
    flex-direction: column;
    gap: .25rem;
}
.hero_feat_title h4 {

}
.hero_feat_title span {
    font-size: .6rem;
}
/* ? */
/* .hero_feat_thumb {
    margin: 2rem auto 2rem;
    display: flex;
    gap: 1rem;
    border: 2px solid green;
} */

/* Default Image Container */
.img_scaler {
    width: 320px;
    height: 320px;
    transition: all 700ms ease-in-out;
}

/*? WHY */
.img_scaler:hover img {
    filter: grayscale(0%);
} 
.img_scaler img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 700ms ease-in-out;
}

/* Hero - Nested Content */
.hero_feat_sum {
    max-width: 320px;
    padding: 1rem;
    font-family: sans-serif;
    flex-direction: column;
    gap: 1rem;
    transition: all 700ms ease-in-out;
}
.hero_feat_sum span {
    display: block;
}
.hero_feat_sum p {
    font-size: .75rem;
    line-height: 1.25rem;
    margin: 1rem auto;
    opacity: 1;
    transition: all 700ms ease-in-out;
}
.hero_feat_sum.show p {
    font-size: .75rem;
    line-height: 1.25rem;
    margin: 1rem auto;
    opacity: 0;
    transition: all 700ms ease-in-out;
}
/* Expands Featured Project Details - Expands Hero Details*/
#feat_one {
    display: none;
    opacity: 0;
    transition: all 700ms ease-in-out;
}
#feat_one.show {
    display: flex;
    opacity: 1;
}
.hero_feat_sum button {
    width: fit-content;
    margin: .5rem 0 1rem 0;
    font-size: .5rem;
    font-family: 'Blu', sans-serif;
    letter-spacing: .3rem;
    box-shadow: 1px 2px 3px rgba(0, 0, 0, .4);
    cursor: pointer;
    position: relative;
}
.hero_feat_sum button::before {
    width: 134px;
    height: 30px;
    content: '';
    background: rgba(0, 0, 0, .2);
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 1s ease-in-out;
}
.hero_feat_sum button:hover:before {
    width: 0px;
    height: 30px;
    content: '';
    background: rgba(0, 0, 0, .2);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}
.hero_feat_sum a {
    color: rgba(255, 215, 104, 0.589);
    text-decoration: underline;
    transition: all 400ms;
}
.hero_feat_sum a:hover {
    color: rgb(255, 187, 0);
    text-decoration: underline;
}
/* Featured Project Section - Hidden Details */
.hero_details {
    display: none;
}
/* Projects */
/* Projects Webpage - projects.html */
.projects_menu {
    width: 100%;
    height: auto;
    min-height: 100vh;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, purple, black);
    display: flex;
    flex-direction: column;
    letter-spacing: .3rem;
    gap: 4rem;
    text-shadow: 1px 2px 3px rgba(255, 255, 255, .2);
}
.project_item {
    padding: 1rem;
    background: white;
    backdrop-filter: blur(1opx);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: center;
    text-align: center;
    gap: 1rem;
    border-radius: 10px;
}
.project_item h3 {
    width: 100%;
    display: block;
    font-size: 2rem;
}
.project_item span {
    max-width: 300px;
}
.project_item a {
    color: black;
    text-decoration: underline;
}

/* About Us */
/* About Us Webpage - about.html*/
.about_us {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    position: absolute;
    top: 8rem;
    letter-spacing: .2rem;
}
.about_us span {
    display: block;
    grid-column: 1 / all;
}
.about_us h2 {
    grid-column: 1 / all;
}
.about_us h3 {
    
}
.about_us p {
    
}
.about_us .sec_one {
    
}
.about_us .sec_two {
    
}
.about_us_story {
    width: 100%;
    margin: 2rem auto;
    grid-column: 1 / 3;
}
.about_us_story p {
    margin: 1rem 0;
    font-size: 12px;
    font-family: sans-serif;
    letter-spacing: .3rem;
}

/* CJAXDEV Portfolio Homepage */
/* HOMEPAGE ABOUT SECTION */
.sec_one {
    width: 100%;
    margin: 0 auto;
}
.about {
    width: 100%;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    overflow: hidden;
    /* border: 1px solid red; */
}
.about_intro {
    padding: 1rem 2rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    gap: 2rem;
    /* border: 1px solid red; */
}
.about_title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.about_author {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about_author h4 {
}
.about_author span {
    width: 100%;
    display: block;
    text-align: center;
}
.about_author_pics {
    margin-bottom: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(600px , 1fr));
    gap: 1rem;
}
.about_author_pics img {
    width: 300px;
    height: auto;
    object-fit: cover;
}
.about_author_links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.about_author_link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: .5rem;
}
.about_author_link a {
    margin-right: 1rem;
    letter-spacing: .2rem;
    transition: all 400ms ease-in-out;
}
.about_author_link a:hover {
    color: blue;
    text-decoration: none;
}
.about_author_link img {
    width: 24px;
    height: 24px;
    object-fit: cover;
}
.about_author_content {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
}
.about_author_story {
    width: 100%;
}   
.about_author_story p {
    width: 100%;
    text-align: right;
    line-height: 2rem;
    letter-spacing: .2rem;
    font-family: sans-serif;
}

.about_author_connect {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.about_author_connect button {
    width: 140px;
    margin: 1rem auto;
    font-size: .5rem;
    font-family: 'Blu', sans-serif;
    letter-spacing: .3rem;
    box-shadow: 1px 2px 3px rgba(0, 0, 0, .4);
    cursor: pointer;
    position: relative;
}
.about_author_connect button::before {
    width: 140px;
    height: 30px;
    content: '';
    background: rgba(0, 0, 0, .2);
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 1s ease-in-out;
}
.about_author_connect button:hover:before {
    width: 0px;
    height: 30px;
    content: '';
    background: rgba(0, 0, 0, .2);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

/* Section Two */
/* Widgets Section - *contains temp widget */
.sec_two {
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}
.sec_two h2 {
    margin: 2rem;
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: .2rem;
}
.widgets {
    width: 250px;
    height: 400px;
    margin: 0 auto;
    padding: .5rem;
    background: linear-gradient(145deg, purple, black);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    color: white;
    position: relative;
    border: 2px solid rgba(0, 0, 0, .4);
    box-shadow: 0 0 5px purple; 
}
.widgets input {
    width: 200px;
    margin: 0 auto;
    padding: .2rem;
    display: block;
    background: rgba(255, 255, 255, .6);
    backdrop-filter: blur(10px);
    border: none;
    box-shadow: 0 1px 5px white;
    font-size: 1rem;
    color: white;
    letter-spacing: .15rem;
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
}
.widgets input:focus {
    border: none;
    outline: none;
    padding: .3rem;
}
.widgets h3 {
    writing-mode: vertical-lr;
    background: -webkit-linear-gradient(rgb(255, 187, 0), #761565);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: .3rem;
}
.widget_blast_area {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.widget_blast_area span {
    font-size: 8rem;
    background: -webkit-linear-gradient(rgb(255, 187, 0), #761565);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.blast_state {
    animation: blastLetters 1s forwards infinite;
}
/* Widgets Section Animation(s) */
/*! DEL */
@keyframes blastLetters {
  0% {
    transform: scale(2);
    transform-origin: 50% 100%;
    filter: blur(4px);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    transform-origin: 50% 100%;
    filter: blur(0px);
    opacity: 1;
  }
}

/* Small Tablets and Mobile Viewports */
@media (max-width: 847px) {
    /* Header */
    header {
        width: 100%;
        height: auto;
        position: sticky;
        top: 0;
        z-index: 15;
    }
    /* Navigation */
    nav {
        width: 100%;
        height: auto;
        margin: 0 auto;
        padding: 2rem;
        display: flex;
        background: black;
        /* background: linear-gradient(
            to bottom,
            #004244, 
            #003b3d,
            #003436,
            #002e2f,
            #002728,
            #002122,
            #001a1b
        ); */
        color: white;
        position: absolute;
        top: 0;
        left: 0;
        /* border: 2px solid red; */
        transition: all 400ms ease-in-out;
    }
    nav.show {
        width: 100%;
        height: auto;
        margin: 0 auto;
        padding: 2rem;
        display: flex;
        background: #001a1b;
        /* background: linear-gradient(
            to bottom,
            #004244, 
            #003b3d,
            #003436,
            #002e2f,
            #002728,
            #002122,
            #001a1b
        ); */
        color: white;
        position: absolute;
        top: 0;
        left: 0;
        /* border: 2px solid red; */
        transition: all 400ms ease-in-out;
    }
    .navbar {
        height: 0px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        opacity: 0;
        position: relative;
        transition: all 400ms ease-in-out;
    }
    .navbar.show {
        height: 150px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        opacity: 1;
        position: relative;
        transition: all 400ms ease-in-out;
    }
    .nav_item {
        width: fit-content;
        display: block;
        font-family: 'Blu', sans-serif;
        font-size: 1rem;
        letter-spacing: .2rem;
        cursor: pointer;
    }
    .nav_icon_open {
        display: none;
        width: 32px;
        height: 32px;
        position: absolute;
        top: 20px;
        right: 20px;
        opacity: 1;
        transform: rotate(180deg);
        cursor: pointer;
        transition: all 700ms ease-in-out;
    }
    .nav_icon_open.show {
        display: block;
        width: 32px;
        height: 32px;
        position: absolute;
        top: 20px;
        right: 20px;
        opacity: 1;
        transform: rotate(180deg);
        cursor: pointer;
        transition: all 700ms ease-in-out;
    }
    .nav_icon_close {
        display: none;
        width: 32px;
        height: 32px;
        position: absolute;
        top: 20px;
        right: 20px;
        cursor: pointer;
        opacity: 0;
        transition: all 700ms ease-in-out;
    }
    .nav_icon_close.show {
        display: block;
        width: 32px;
        height: 32px;
        position: absolute;
        top: 20px;
        right: 20px;
        opacity: 1;
        cursor: pointer;
        transition: all 700ms ease-in-out;
    }
    .nav_links {
        display: flex;
        flex-direction: column;
        align-items:flex-start;
        gap: 2rem;
        font-size: .8rem;
        opacity: 0;
        transition: all 1s ease-in-out;
    }
    .nav_links a {
        width: fit-content;
        padding: .25rem;
        display: block;
    }
    .nav_links.show {
        display: flex;
        flex-direction: column;
        align-items:flex-start;
        gap: 2rem;
        font-size: .8rem;
        opacity: 1;
    }
    .nav_links.show a {
        width: fit-content;
        padding: .25rem;
        display: block;
        transition: all 700ms ease-in-out;
    }
    .nav_links.show  a:hover {
        transform: scale(120%);
        color: #561b19;
    }
    .responsive {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
    .test {
        width: 100%;
        height: auto;
        margin: 0 auto;
        padding: 6rem 2rem 2rem;
        /* background: linear-gradient(
            to top,
            #004244, 
            #003b3d,
            #003436,
            #002e2f,
            #002728,
            #002122,
            #001a1b,
            #001a1b); */
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        color: white;
    }
    .test h1 {
        font-size: 3rem;
        margin: 0 auto;
        text-align: center;
    }
    .test div h4 {
        text-align: center;
    }
    .test div span {
        text-align: center;
    }
    /* breaks at 1140px */
    .hero {
        width: 100%;
        height: auto;
        margin: 0 auto;
        padding: 1rem 2rem;
        display: flex;
        flex-direction: column;
        background: url(/media/images/background/blk_purple.jpg);
        background-size: cover;
        font-size: .8rem;
        font-family: 'Blu', sans-serif;
        letter-spacing: .2rem;
        /* animation: heroSlide linear;
        animation-timeline: view();
        animation-range: entry 0% cover 70%; */
        position: relative;
        z-index: 1;
    }
    @keyframes heroSlide {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }
    .hero_feat {
        width: 100%;
        height: auto;
        margin: 1rem auto;
        padding: .5rem;
        display: flex;
        align-items: center;
        gap: 2rem;
        /* border: 2px solid red; */
    }
    .hero_feat_title {
        display: flex;
        flex-direction: column;
        gap: .25rem;
    }
    .hero_feat_title h4 {

    }
    .hero_feat_title span {
        font-size: .6rem;
    }
    .hero_feat_thumb {
        margin: 2rem auto 2rem;
        display: flex;
        gap: 1rem;
        /* border: 2px solid green; */
    }
    .img_scaler {
        width: 320px;
        height: 320px;
        transition: all 700ms ease-in-out;
    }
    .img_scaler:hover img {
        filter: grayscale(0%);
    } 
    .img_scaler img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: grayscale(100%);
        transition: all 700ms ease-in-out;
    }
    .hero_feat_sum {
        max-width: 320px;
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        transition: all 700ms ease-in-out;
    }
    .hero_feat_sum p {
        font-size: .75rem;
        line-height: 1.25rem;
        margin: 1rem auto;
        opacity: 1;
        transition: all 700ms ease-in-out;
    }
    .hero_feat_sum.show p {
        font-size: .75rem;
        line-height: 1.25rem;
        margin: 1rem auto;
        opacity: 0;
        transition: all 700ms ease-in-out;
    }
    #feat_one {
        display: none;
        opacity: 0;
        transition: all 700ms ease-in-out;
    }
    #feat_one.show {
        display: flex;
        opacity: 1;
    }
    .hero_feat_sum button {
        width: fit-content;
        margin: .5rem 0 1rem 0;
        font-size: .5rem;
        font-family: 'Blu', sans-serif;
        letter-spacing: .3rem;
        box-shadow: 1px 2px 3px rgba(0, 0, 0, .4);
        cursor: pointer;
        position: relative;
    }
    .hero_feat_sum button::before {
        width: 134px;
        height: 30px;
        content: '';
        background: rgba(0, 0, 0, .2);
        opacity: 1;
        position: absolute;
        top: 0;
        left: 0;
        transition: all 1s ease-in-out;
    }
    .hero_feat_sum button:hover:before {
        width: 0px;
        height: 30px;
        content: '';
        background: rgba(0, 0, 0, .2);
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
    }
    .hero_feat_sum a {
        color: #561b19;
        text-decoration: underline;
    }
    .hero_details {
        display: none;
    }
    
    .projects_menu {
        width: 100%;
        height: auto;
        min-height: 100vh;
        padding: 6rem 2rem;
        background: linear-gradient(135deg, purple, black);
        display: flex;
        flex-direction: column;
        letter-spacing: .3rem;
        gap: 4rem;
        text-shadow: 1px 2px 3px rgba(255, 255, 255, .2);
    }
    .project_item {
        padding: 1rem;
        background: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }
    .project_item h3 {
        width: 100%;
        display: block;
        font-size: 2rem;
        text-align: center;
    }
    .project_item span {
        max-width: 300px;
        text-align: center;
    }
    .project_item a {
        color: black;
        text-decoration: underline;
        text-align: center;
    }
    .about_us {
        max-width: 320px;
        padding: .5rem;
        margin: 0;
        display: flex;
        flex-direction: column;
    }
    .about_us_story {
    width: 100%;
    margin: 0;
    padding: 0;
    max-width: 320px;
    margin: 2rem auto;
    }
    .about_us_story p {
        max-width: 320px;
        margin: 1rem 0;
        font-size: 12px;
        font-family: sans-serif;
        line-height: 1.25rem;
        word-wrap: break-word;
    }
    /* About Developer Section */
    .sec_one {
        width: 100%;
        margin: 0 auto;
    }
    .about {
        width: 100%;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        overflow: hidden;
    }
    .about_intro {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .about_title {
        display: flex;
        flex-direction: column;
        gap: .25rem;
    }
    .about_author {
        display: flex;
        flex-direction: column;
    }
    .about_author h4 {
        margin-bottom: .25rem;
    }
    .about_author span {
        display: block;
    }
    .about_author_pics {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px , 1fr));
        gap: 1rem;
    }
    .about_author_pics img {
        width: 250px;
        height: auto;
        object-fit: cover;
    }
    .about_author_links {
        display: flex;
        flex-direction: column;
        gap: 4rem;
    }
    .about_author_link {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1rem;
    }
    .about_author_link a {
        text-decoration: underline;
        transition: all 400ms ease-in-out;
    }
    .about_author_link a:hover {
        color: blue;
        text-decoration: none;
    }
    .about_author_link img {
        width: 32px;
        height: 32px;
        object-fit: cover;
    }
    .about_author_content {
        display: flex;
        flex-direction: column;
    }
    .about_author_story {
        width: 100%;
        max-width: 320px;
    }   
    .about_author_story p {
        width: 100%;
    }
    .about_author_connect {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 2rem;
    }
    .about_author_connect button {
        padding: .5rem 1rem;
        background: gray;
        color: white;
        border-radius: 5px;
        cursor: pointer;
    }
}