﻿/*============== CSS VARIABLES ===============*/
:root{
    --border-size: 5%;
    --font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --text-shadow: none;
    --base-color: 234, 234, 234;
    --unselected-color:147, 145, 145;
    --typing-width: 2px;
    --project-ui: 34, 34, 34;
    --accent-color: 231, 76, 60;
    --project-card-color: 30, 30, 30;
    --background-color: 15, 15, 15;
    --top-bot-background: 255, 255, 255, 0.1;
    --clip-duration: 2s;
    --wipe-animation-play: running;
}

/* =============== GLOBAL STYLES =================*/
*{
    box-sizing: border-box;
    margin: 0px;
    font-family: var(--font-family);
    text-shadow: var(--text-shadow);
    color: rgb(var(--base-color));
    -webkit-tap-highlight-color: transparent;
}
i{
    font-size: 2em;
}
/* =============== SKILLS STYLES =================*/
.badge.back     { background-color: #2e7d57; } /* C++ */
.badge.fron     {background-color: #347cae;}
.badge.apps   { background-color: #3b4ba3; } /* Unity*/
.badge.apis   { background-color: #6441a5; } /* D3D11 */
.badge.grap  { background-color: #b33939; } /*graphics*/
.badge.algo { background-color: #1f5c73; } /* D3D11 */
.badge.conc  { background-color: #926c3f; } /* Physics */
.skill-icon.back    { color: #2e7d57; } /* C++ */
.skill-icon.fron    {color: #347cae;}
.skill-icon.apps   { color: #3b4ba3; } /* Unity*/
.skill-icon.apis   { color: #6441a5; } /* D3D11 */
.skill-icon.grap  { color: #b33939; } /*graphics*/
.skill-icon.algo { color: #1f5c73; } /* D3D11 */
.skill-icon.conc  { color: #926c3f; } /* Physics */

.highlight{
    color: rgb(var(--accent-color));
    font-weight: 600;
}

p{
    font-size: 1.5em;
    text-shadow: 0px 0px 5px rgba(var(--base-color), .2);
}
.active{
    z-index: 1 !important;
}

.fixed{
    position: fixed !important;
}

.noT{ 
    transition: none !important;
}

/* =============== BODY STYLES =================*/
body{
    display: block;
    height: 100dvh;
    overflow: visible;
    background-color: rgb(var(--background-color));
}
/* =============== CANVAS STYLES =================*/
canvas{
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    box-sizing: border-box;
    background: rgb(var(--background-color));
}
/* =============== LAYOUT STYLES =================*/
.top{
    display: block;
    width: 100%;
    height: 50px;
}

.bottom{
    width: 100%;
    height: 50px;
}

.middle{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0px auto;
    padding: 20px;
    overflow: hidden;
    flex: 1;
}

/* =============== INTRO STYLES =================*/
.intro{
    display: inline-block;
    width: 100%;
    margin-bottom: 16px;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(var(--base-color));
    text-shadow: 0px 0px 5px rgba(var(--base-color), .2);
}

.intro::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    margin-top: 6px;
    background: linear-gradient(to right, rgb(var(--accent-color)), transparent);
}

::selection{
    background-color: rgba(var(--accent-color), 0.1);
}

/* =============== NAVBAR STYLES =================*/
#navbar{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    position: fixed;
    top: 0px;
    width: 100%;
    height: 50px;
    padding-right: 20px;
    gap: 20px;
    z-index: 3;
    mix-blend-mode: difference;
    backdrop-filter: blur(10px);
    background-color: rgba(var(--top-bot-background));
    user-select: none;
}

#navbar .navCon{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

#navbar .navBut{
    display: block;
    font-size: 1.5em;
    font-weight: 500;
    font-style: bold;
    cursor: pointer;
    user-select: none;
    color: rgb(var(--unselected-color));
    transition: color 1s, text-shadow 1s;
}

.activeBut{
    color: rgb(var(--base-color)) !important;
    text-shadow: 0px 0px 10px rgb(var(--base-color));
}

#navbar .navBut:hover{
    color: rgb(var(--base-color));
    text-shadow: 0px 0px 10px rgb(var(--base-color));
}

/* =============== CONTACTS STYLES =================*/
#contacts{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    position: fixed;
    bottom: 0%;
    left: 0%;
    width: 100%;
    height: 50px;
    z-index: 3;
    mix-blend-mode: difference;
    background: rgba(var(--top-bot-background));
    backdrop-filter: blur(5px);
}

#contacts .logoCon{
    margin: 20px;
}

#contacts a{
    display: block;
    flex: 1;
    text-decoration: none;
    color: rgb(var(--unselected-color));
}

#contacts a:visited{
    color: rgb(var(--unselected-color));
}

#contacts a:link{
    color: rgb(var(--unselected-color));
}

#contacts i{
    display: inline-block;
    color: rgb(var(--unselected-color));
    transition: color 1s, text-shadow 1s;
}

#contacts i:hover{
    color: rgb(var(--base-color));
    text-shadow: 0px 0px 10px rgb(var(--base-color));
}

/* =============== BORDER STYLES =================*/
#border{
    display: none;
    position: fixed;
    top: calc(100vh - 40%);
    left: 0%;
    width: 100%;
    height: 40%;
    z-index: 2;
    opacity: 0;
    background: linear-gradient(to top, black 0%, transparent 100%);
    transition: top var(--clip-duration) ease-in-out, opacity 1s ease;
}

.activeBorder{
    opacity: 1 !important;
    top: -40% !important;
}

/* =============== SECTION STYLES =================*/
.section{
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    min-height: 100%;
    z-index: 0;
    overflow: hidden;
    clip-path: inset(100% 0% 0% 0%);
    background-color: rgb(var(--background-color));
    transition: clip-path var(--clip-duration) ease-in-out;
}   

.shown{
    display: flex !important;
}

.non-clipped{
    clip-path: inset(0 0% 0% 0%) !important;
}
.shown-controls{
    transform: translateX(0%) !important;
}
/* =============== HOME SECTION STYLES =================*/
#home{
    height: 100dvh;
}
#home .smoke-but{
    width: 60px;
    height: 40px;
    position: absolute;
    top: 60px;
    left: calc(100% + 10px);
    background:rgb(var(--accent-color), 0.2);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 0px;
    transition: background-color 0.5s ease-in-out;
}
#home .smoke-but i{
    font-size: 1.5em;
    color: rgb(var(--accent-color));
}
#home .smoke-but:hover{
    background: rgba(var(--accent-color), 0.4);    cursor: pointer;
}
#home #controls-bar{
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 200px;
    background: rgba(var(--project-card-color), 0.8);
    backdrop-filter: blur(10px);
    transform: translateX(-100%);
    transition: transform 1s ease-in-out;
}
#home .controls-container{
    height: 100%;
    padding: 60px 10px;
    overflow: scroll;
}
#home .form-row{
    display: grid;
    grid-template-columns: 1fr;
}
#home video{
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    box-sizing: border-box;
    object-fit: fill;
}

#home .main-content{
    display: flex;
    width: 100%;
    height: 100vh;
    flex: 1;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    user-select: none;
}

#home .container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

#i1{
    color: rgb(var(--base-color));
    mix-blend-mode: difference;
}
#typewriter-holder{
    display: inline-block;
    position: relative;
}
#typewriter{
    position: relative;
    display: inline-block;
    font-size: 1.75em;
    line-height: 1;
    min-height: 1em;
    font-weight: 200;
    border: 2px solid black;
    color: rgb(var(--base-color));
    mix-blend-mode: difference;
    
}

#typewriter-bar{
    position: absolute;
    left: 100%;
    top: 0%;
    display: inline-block;
    width: var(--typing-width);
    height: calc(100% - 0.15em);
    background-color: rgb(var(--accent-color));
}

/* =============== PROJECTS SECTION STYLES =================*/
#projects .projects-container{
    width: 100%;
    height: 100%;
    overflow: clip;
}

#projects #card-expanded-container{
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100dvh;
    z-index: 2;
    padding: 20px;
    overflow: clip;
    opacity: 0;
    background-color: rgba(var(--project-card-color), 0.2);
    backdrop-filter: blur(10px);
    transition: opacity 1s ease-in-out;
}

#projects .card-expanded{
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    max-width: 600px;
    max-height: calc(100% - 100px);
    padding: 18px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 12px;
    border: 2px solid transparent;
    background-color: rgb(var(--project-card-color));
    box-shadow: 0px 0px 1.5px rgb(var(--accent-color));
    text-decoration: none;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}

#projects .card-expanded .scrollable{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    overflow-y: scroll;
    pointer-events: auto;
}

#projects .card-expanded *{
    pointer-events: none;
}

#projects .card-expanded .card-button{
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 35px;
    height: 35px;
    margin: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid rgb(var(--accent-color));
    background-color: transparent;
    color: rgb(var(--accent-color));
    cursor: pointer;
    transform: rotateZ(45deg);
} 

#projects .card-expanded:hover{
    box-shadow: 0px 0px 10px rgb(var(--accent-color));
}

#projects .card-expanded:hover .card-button{
    background: rgb(var(--accent-color));
    color: rgb(var(--base-color));
}

#projects .tech-header{
    display: block;
    width: fit-content;
    padding: 8px;
    white-space: nowrap;
    font-weight: 700;
    color: rgb(var(--base-color));
}

#projects .tech-header::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    margin-top: 6px;
    background: linear-gradient(to left, rgb(var(--accent-color)), transparent);
}

#projects .card-expanded .card-skills{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    margin: 10px 0 10px;
    gap: 2px;
    overflow-y: visible;
}

#projects .main-content{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    flex: 1;
}

#projects .container{
    width: 100%;
}

::-webkit-scrollbar{
    display: none;
}

#projects .openable{
    cursor: pointer;
    pointer-events: auto;
}

#projects .card-link{
    display: block;
    width: 400px;
    padding: 18px;
    border-radius: 12px;
    border: 2px solid transparent;
    background-color: rgb(var(--project-card-color));
    box-shadow: 0px 0px 1.5px rgb(var(--accent-color));
    text-decoration: none;
    transition: 0.2s ease;
}

#projects .card-link:hover{
    transform: translateY(-5px);
    border-color: rgb(var(--accent-color));
    box-shadow: 0px 0px 10px rgb(var(--accent-color));
}

#projects .card-image{
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 10px;
    object-fit: cover;
}

#projects .card-item .card-skills{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    height: 100px;
    margin: 10px 0 10px;
    gap: 2px;
    overflow-y: scroll;
}

#projects .card-skills .badge{
    display: inline-block;
    width: fit-content;
    padding: 8px 16px;
    border-radius: 50px;
    white-space: nowrap;
    font-weight: 500;
    color: rgb(var(--base-color));
}

#projects .card-item .card-title{
    font-size: 1.2em;
    font-weight: 600;
    color: rgb(var(--base-color));
}

#projects .card-item .card-button{
    position: absolute;
    width: 35px;
    height: 35px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid rgb(var(--accent-color));
    color: rgb(var(--accent-color));
    transform: rotateZ(-45deg);
}

#projects .card-item .card-link:hover .card-button{
    background: rgb(var(--accent-color));
    color: rgb(var(--base-color));
}

.slider-wrapper{
    margin: 20px 50px 55px;
    padding: 10px 10px 10px 10px;
    overflow: hidden;
}

.slider-wrapper .swiper-pagination-bullet{
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgb(var(--project-ui));
    transition: background-color 2s ease;
}

.slider-wrapper .swiper-pagination-bullet:hover{
    background-color: rgb(var(--project-ui));
}

.slider-wrapper .swiper-slide-button{
    margin-top: -50px;
    color: rgb(var(--project-ui));
}

.slider-wrapper .swiper-slide-button:hover{
    color: rgb(var(--project-ui));
    text-shadow: 0px 0px 10px rgb(var(--project-ui));
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 18px;
}

/* =============== ABOUT SECTION STYLES =================*/
#about{
    justify-content: space-between;
}

#about .a-m{
    display: grid;
    grid-template-columns: 1fr 2fr;
    max-width: 100%;
    gap: 20px;
    margin-bottom: 20px;
}

#about .headshot-holder {
    position: relative;
    border-radius: 20px;
}

#about .headshot-holder img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}

#about .headshot-holder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 3;
    border-radius: 20px;
    background: linear-gradient(45deg, rgba(249, 0, 0,0.2), rgba(79, 3, 3, 0.1));
}

#about .main-content{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 5px;
}

#about .main-content .name{
    color: rgb(var(--base-color));
}

#about .main-content h2{
    margin-bottom: 20px;
    color: rgb(var(--accent-color));
}

#about .main-content p{
    margin-bottom: 10px;
}

#about .main-content .resume{
    display: inline-block;
    width: fit-content;
    padding: 5px 10px;
    border-radius: 10px;
    border: 2px solid rgb(var(--accent-color));
    background-color: rgb(var(--background-color));
    box-shadow: 0px 0px 5px rgb(var(--accent-color));
    font-size: 1.25em;
    font-weight: 700;
    text-decoration: none;
    color: rgb(var(--accent-color));
    transition: all 0.3s ease;
}

#about .resume:hover{
    transform: translateY(-2px);
    box-shadow: 0px 10px 20px rgba(var(--accent-color), 0.5);
}

#about .stats-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    gap: 40px;
    margin-top: 60px;
}

#about .stat-card {
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    background: rgb(var(--project-card-color));
    box-shadow: 0px 0px 1.5px rgb(var(--accent-color));
    transition: all 0.3s ease;
}

#about .stat-card:hover {
    transform: translateY(-5px);
    border-color: rgb(var(--accent-color));
    box-shadow: 0px 0px 10px rgb(var(--accent-color));
}

#about .stat-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: rgb(var(--accent-color));
}

#about .stat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#about .stat-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

#about .stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    border-radius: 4px;
    border: 1px solid rgb(var(--accent-color));
    background: rgba(var(--accent-color), 0.3);
    font-size: 14px;
}

#about .stat-label {
    flex: 1;
    text-align: left;
    color: rgb(var(--base-color));
}

#about .stat-value {
    font-weight: 600;
    color: rgb(var(--base-color));
}

#about .skills-grid{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

#about .interests-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

#about .interest-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid rgb(var(--accent-color));
    background: rgba(var(--accent-color), 0.1);
}

#about .interest-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    font-size: 1.5em;
}

#about .interest-icon img{
    width: 100%;
    height: 100%;
    border-radius: 3px;
    object-fit: cover;
}

#about .skill-item{
    display: flex;
    align-items: center;
    padding: 5px;
    border-radius: 8px;
    border: 1px solid rgb(var(--accent-color));
    background: rgba(var(--accent-color), 0.1);
}

#about .skill-icon {
    display: flex;
    align-items: bottom;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 3px;
    font-size: 2em;
}

#about .skill-icon.text{
    align-items: center;
    font-size: 1em;
}

#about .mobile{
    display: none;
}

/* =============== CONTACT SECTION STYLES =================*/
#contact .contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

#contact .contact-info {
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgb(var(--accent-color));
    height: fit-content;
    background: rgb(var(--project-card-color));
}

#contact .contact-info h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    color: rgb(var(--accent-color));
}

#contact .contact-info p {
    margin-bottom: 30px;
    line-height: 1.8;
    color: rgb(var(--base-color));
}

#contact .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#contact .contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

#contact .contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-right: 20px;
    border-radius: 12px;
    background-color: rgb(var(--accent-color));
    font-size: 20px;
}

#contact .contact-details h3 {
    margin-bottom: 5px;
    font-size: 1rem;
    font-weight: 600;
    color: rgb(var(--base-color));
}

#contact .contact-details p {
    margin: 0;
    font-size: 0.95rem;
    color: rgb(var(--base-color));
}

#contact .contact-details a {
    text-decoration: none;
    color: rgb(var(--accent-color));
    transition: color 0.3s ease;
}

#contact .contact-details a:hover {
    color: rgba(var(--accent-color), 0.8);
}

#contact .contact-form {
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgb(var(--project-card-color));
}
.contact-form h2 {
    margin-bottom: 30px;
    font-size: 2rem;
    color: rgb(var(--base-color));
}

#contact .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgb(var(--base-color));
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    color: rgb(var(--base-color));
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: rgb(var(--accent-color));
    box-shadow: 0 0 0 3px rgba(var(--accent-color), 0.1);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #2d2d2d;
    color: rgb(var(--base-color));
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    margin-top: 10px;
    border: none;
    border-radius: 12px;
    background: rgb(var(--accent-color));
    font-size: 1.1rem;
    font-weight: 600;
    color: rgb(var(--base-color));
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(var(--accent-color), 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* =============== RESPONSIVE STYLES =================*/
@media (max-width: 700px){
    #navbar{
        display: flex;
        justify-content: space-evenly;
        padding: 0px;
        gap: 0px;
    }
    
    #contacts{
        display: flex;
        justify-content: space-around;
        height: 50px;
    }
    
    
    #projects{
        justify-content: flex-end;
    }
    
    #projects .slider-wrapper{
        margin: 0px 10px 15px;
    }
    
    #projects .slider-wrapper .swiper-slide-button{
        display: none;
    }
    
    #about .a-m{
        display: flex;
        flex-direction: column;
    }
    
    #about .mobile{
        display: grid;
        grid-template-columns: 1fr 3fr;
        gap: 20px;
    }
    
    #about .mobile .introHolder{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    #about .resume{
        width: 100% !important;
        text-align: center;
    }
    
    #about .desktop{
        display: none !important;
    }
    
    #about .stats-section {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    #about .stat-card {
        padding: 20px;
    }
    
    #about .interests-grid {
        flex-direction: column;
        gap: 10px;
    }

    #about .interest-item {
        width: 100%;
    }
    
    #contact .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    #contact .contact-info,
    #contact .contact-form {
        padding: 25px;
    }

    #contact .contact-info h2,
    #contact .contact-form h2 {
        font-size: 1.6rem;
    }

    #contact .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    #contact .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    #contact .social-links {
        flex-wrap: wrap;
    }

    #contact .social-link {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}
