*{
    margin: 0;
    padding: 0;
}
html, body {
    -webkit-text-size-adjust: 100% ;
}
body {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: #f3f3f3;
    color: #333;
    font-weight: 400;
    letter-spacing: -0.01em;

}
.header {
    align-items: center;
    justify-content: center;
    width: 100%;
    grid-area: h;
    background-image: url('image.png');
    background-size: cover;
    background-position: center;
    color: whitesmoke;
    text-align: center;
    padding: 3vh 0;
    position: relative;
    margin: 0;
}
.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.header-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.header h1 {
    font-size: 2em;
    margin: 0;
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.title {
    font-size: 1.1em;
    margin: 0;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
.university-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.uni-name {
    font-size: 0.9em;
    font-weight: 500;
}
.pfp {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0;
    border: 4px solid #00BFA6;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}
.pfp:hover {
    transform: scale(1.05);
}
.uop {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}
.headers{
    background: linear-gradient(135deg, #01132c, #112a50, #00BFA6);
    color: whitesmoke;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}
.headers::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00BFA6, transparent);
}
.text1, .text2, .text3{
    padding-left: 40px;
    padding-right: 40px;
    text-align: justify;
}
.text1{
    margin-top: 20px;
}
.text3{
    margin-bottom: 15px;
}
.about-section {
    padding: 15px 30px;
}
.about-text {
    margin: 12px 0;
    padding: 12px 15px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 8px;
    border-left: 3px solid #00BFA6;
    line-height: 1.6;
    text-align: justify;
}
.about-text-unified {
    margin: 0;
    padding: 18px 22px;
    background: #ffffff;
    border-radius: 10px;
    border-left: 4px solid #00BFA6;
    line-height: 1.7;
    text-align: justify;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
    font-size: 1em;
    font-weight: 400;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #1a1a1a;
}
.highlight-icon {
    font-size: 1.2em;
    margin-right: 8px;
    vertical-align: middle;
}
.section-divider {
    margin: 20px 30px;
    border: none;
    border-top: 2px solid #e0e0e0;
}

/* Art Portfolio Section */
.art-portfolio-section {
    padding: 15px 30px;
}

.art-portfolio-card {
    display: block;
    text-decoration: none;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 12px;
    padding: 20px 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.art-portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 191, 166, 0.05), rgba(17, 42, 80, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.art-portfolio-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 191, 166, 0.2);
    border-color: #00BFA6;
}

.art-portfolio-card:hover::before {
    opacity: 1;
}

.art-portfolio-content {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.art-portfolio-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00BFA6, #112a50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.art-portfolio-icon i {
    font-size: 1.6em;
    color: white;
}

.art-portfolio-text {
    flex: 1;
}

.art-portfolio-text h4 {
    margin: 0 0 5px 0;
    font-size: 1.15em;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Poppins', 'Inter', sans-serif;
}

.art-portfolio-text p {
    margin: 0;
    font-size: 0.9em;
    color: #666;
    line-height: 1.4;
}

.art-portfolio-arrow {
    width: 40px;
    height: 40px;
    background: rgba(0, 191, 166, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.art-portfolio-arrow i {
    color: #00BFA6;
    font-size: 1em;
    transition: transform 0.3s ease;
}

.art-portfolio-card:hover .art-portfolio-arrow {
    background: #00BFA6;
}

.art-portfolio-card:hover .art-portfolio-arrow i {
    color: white;
    transform: translateX(3px);
}

.hobbies-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 15px 30px;
}
.hobby-item {
    background: #ffffff;
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.hobby-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 191, 166, 0.12);
}
.hobby-bullet {
    font-size: 1.2em;
    color: #00BFA6;
    font-weight: bold;
    flex-shrink: 0;
}
.hobby-text {
    font-size: 0.95em;
    line-height: 1.4;
    text-align: left;
    font-weight: 500;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.projects-container {
    padding: 15px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.project-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 22px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #00BFA6;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.project-card:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 16px rgba(0, 191, 166, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08);
    border-left-width: 5px;
}
.project-header {
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: default;
}
.toggle-icon {
    display: none;
    font-size: 1.5em;
    color: #00BFA6;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}
.project-content {
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.project-title {
    color: #0a1929;
    font-size: 1.1em;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 600;
    text-align: left;
    letter-spacing: -0.04em;
    line-height: 1.25;
    flex: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
.project-description {
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
}
.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}
.tech-badge {
    background: linear-gradient(135deg, #01132c, #00BFA6);
    color: white;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.8em;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}
.project-link {
    font-size: 0.9em;
    color: #555;
    margin: 0;
}
.direct {
    color: #00BFA6;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}
.direct:hover {
    color: #01132c;
    text-decoration: underline;
}
.email-buttons{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    margin: 15px 10px;
    gap: 10px;
}
.email-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #01132c, #00BFA6);
    color: whitesmoke;
    border: none;
    border-radius: 10px;
    font-size: 0.95em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.email-card:hover {
    background: linear-gradient(135deg, #00BFA6, #01132c);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 191, 166, 0.3);
}
.email-card i {
    font-size: 1.2em;
}
.email-label {
    font-weight: 500;
}
.button {
    display: inline-block;
    padding: 12px 25px; 
    background: linear-gradient(135deg, #01132c, #00BFA6); 
    color: whitesmoke;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}
.button:hover{
    font-size: 1.2rem;
    background: linear-gradient(135deg, #00BFA6, #01132c);
    color: #fff;
    transform: translateY(-3px);
    transition: 0.5s;
}
.social-media{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
    padding: 10px;
}
.social-link {
    text-decoration: none;
    display: block;
}
.social-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 3px solid transparent;
}
.social-card:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}
.social-card.linkedin {
    border-left-color: #0077B5;
}
.social-card.linkedin:hover {
    background: linear-gradient(135deg, #e7f3f8, #ffffff);
    box-shadow: 0 4px 10px rgba(0, 119, 181, 0.2);
}
.social-card.instagram {
    border-left-color: #E4405F;
}
.social-card.instagram:hover {
    background: linear-gradient(135deg, #fce8ec, #ffffff);
    box-shadow: 0 4px 10px rgba(228, 64, 95, 0.2);
}
.social-card.github {
    border-left-color: #333;
}
.social-card.github:hover {
    background: linear-gradient(135deg, #f0f0f0, #ffffff);
    box-shadow: 0 4px 10px rgba(51, 51, 51, 0.2);
}
.social-icon-img {
    width: 50px !important;
    height: 50px !important;
    object-fit: contain;
    flex-shrink: 0;
}
.social-label {
    font-size: 1.05em;
    font-weight: 600;
    color: #0a1929;
    font-family: 'Poppins', 'Inter', sans-serif;
    letter-spacing: -0.04em;
    line-height: 1.25;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
.social-icon {
  border: 4px solid transparent;
  border-radius: 50%;
  transition: border 0.3s ease, transform 0.3s ease;
  display: block;
  margin: 0 auto;
}
.list{
    padding-left: 55px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 55px;
}
h4{
   padding-left: 40px;
}
.list-lang{
    padding-left: 65px;
    padding-top: 5px;
    padding-bottom: 15px;
}
.languages {
    padding: 10px 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.language-item {
    background: #ffffff;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.language-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}
.language-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}
.language-name {
    font-size: 0.9em;
    font-weight: 600;
    color: #112a50;
}
.language-level {
    font-size: 0.75em;
    padding: 2px 8px;
    background-color: #00BFA6;
    color: white;
    border-radius: 10px;
    font-weight: 500;
}
.language-progress {
    width: 100%;
    height: 6px;
    border-radius: 6px;
}
progress.language-progress::-webkit-progress-bar {
    background-color: #e0e0e0;
    border-radius: 10px;
}
progress.language-progress::-webkit-progress-value {
    background: linear-gradient(90deg, #00BFA6, #01132c);
    border-radius: 10px;
    transition: width 0.5s ease;
}
progress.language-progress::-moz-progress-bar {
    background: linear-gradient(90deg, #00BFA6, #01132c);
    border-radius: 10px;
}
.skills {
    padding: 10px 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.skills-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.skill-item {
    background: #ffffff;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 3px solid #00BFA6;
}
.skill-item:hover {
    transform: translateX(2px);
    box-shadow: 0 4px 8px rgba(0, 191, 166, 0.15);
    border-left-width: 4px;
}
.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}
.skill-name {
    font-size: 0.9em;
    font-weight: 600;
    color: #112a50;
}
.skill-progress {
    width: 100%;
    height: 6px;
    border-radius: 6px;
}
progress.skill-progress::-webkit-progress-bar {
    background-color: #e8eef3;
    border-radius: 10px;
}
progress.skill-progress::-webkit-progress-value {
    background: linear-gradient(90deg, #00BFA6, #01a891, #00BFA6);
    border-radius: 10px;
    transition: width 0.5s ease;
    box-shadow: 0 2px 5px rgba(0, 191, 166, 0.3);
}
progress.skill-progress::-moz-progress-bar {
    background: linear-gradient(90deg, #00BFA6, #01a891, #00BFA6);
    border-radius: 10px;
}
.social-icon.highlight {
  border: 7px solid #00bcd4;
  transform: scale(1.1);
}
.social-icon:hover {
    transform: scale(1.1);
    transition: 0.5s;
}
@media screen and (max-width: 600px){
    .container {
        max-width: 100%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(10, 1fr);
        grid-template-rows: minmax(0px, auto);        
        grid-template-areas: 
            "h h h h h h h h h h"
            "h h h h h h h h h h"
            "c c c c c c c c c c"
            "c c c c c c c c c c"
            "c c c c c c c c c c"
            "c c c c c c c c c c"
            "n n n n n n n n n n"; 
        grid-gap: 0px;       
    }
    .social-bar{
        grid-area: n;
    }
    .header{
        font-size: 1.1rem;
    }
    .content{
        grid-area: c;
        width: 100%;
        font-size: 1.2rem;
    }
    .header{
        padding: 2.5vh 0;
    }
    .header h1 {
        font-size: 1.7em;
    }
    .title {
        font-size: 0.95em;
    }
    .pfp {
        width: 90px;
        height: 90px;
    }
    .uop {
        width: 30px;
        height: 30px;
    }
    .uni-name {
        font-size: 0.85em;
    }
    .university-badge {
        padding: 6px 12px;
    }
    .headers {
        font-size: 1.6rem;
        width: 100%;
        text-align: center;
        color: whitesmoke;
    }

    .social-media{
        padding: 8px;
        gap: 8px;
    }
    .social-card {
        padding: 14px 15px;
    }
    .social-icon-img {
        width: 50px !important;
        height: 50px !important;
    }
    .social-label {
        font-size: 1em;
    }
    .email-buttons {
        margin: 10px 8px;
        gap: 8px;
    }
    .email-card {
        padding: 10px 15px;
        font-size: 0.85em;
    }
    .social-icon{
        width: 80px;
        height: 80px;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }
    .skills {
        padding: 10px 15px;
        gap: 8px;
    }
    .skill-item {
        padding: 8px 10px;
    }
    .skill-name {
        font-size: 0.85em;
    }
    .skill-percentage {
        font-size: 0.7em;
        padding: 2px 7px;
        min-width: 35px;
    }
    .languages {
        padding: 10px 15px;
        gap: 8px;
    }
    .language-item {
        padding: 8px 10px;
    }
    .language-name {
        font-size: 0.85em;
    }
    .language-level {
        font-size: 0.7em;
        padding: 2px 7px;
    }
    .about-section {
        padding: 10px 15px;
    }
    .about-text {
        padding: 10px 12px;
        font-size: 0.95em;
    }
    .art-portfolio-section {
        padding: 10px 15px;
    }
    .art-portfolio-card {
        padding: 15px 18px;
    }
    .art-portfolio-content {
        gap: 15px;
    }
    .art-portfolio-icon {
        width: 50px;
        height: 50px;
    }
    .art-portfolio-icon i {
        font-size: 1.3em;
    }
    .art-portfolio-text h4 {
        font-size: 1em;
    }
    .art-portfolio-text p {
        font-size: 0.8em;
    }
    .art-portfolio-arrow {
        width: 35px;
        height: 35px;
    }
    .hobbies-grid {
        grid-template-columns: 1fr;
        padding: 10px 15px;
        gap: 8px;
    }
    .hobby-item {
        padding: 10px 12px;
    }
    .hobby-text {
        font-size: 0.85em;
    }
    .projects-container {
        padding: 10px 15px;
        gap: 15px;
    }
    .project-card {
        padding: 15px;
    }
    .project-header {
        cursor: pointer;
    }
    .toggle-icon {
        display: block;
    }
    .project-card.collapsed .project-header {
        margin-bottom: 0;
    }
    .project-card.collapsed:hover {
        transform: none;
    }
    .project-title {
        font-size: 1em;
    }
    .project-description {
        font-size: 0.9em;
    }

}

@media screen and (min-width: 600px ) and (max-width: 1024px){
    .container {
        max-width: 100%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(10, 1fr);
        grid-template-rows: minmax(0px, auto);        
        grid-template-areas: 
            "h h h h h h h h h h"
            "h h h h h h h h h h"
            "c c c c c c c c c c"
            "c c c c c c c c c c"
            "c c c c c c c c c c"
            "c c c c c c c c c c"
            "n n n n n n n n n n"; 
        grid-gap: 0px;       
    }
    .header{
        font-size: 1.2rem;
    }
    .social-bar{
        grid-area: n;
    }
    .content{
        grid-area: c;
        width: 100%;
        font-size: 1.2rem;
    }
    .header{
        padding: 2.5vh 0;
    }
    .header h1 {
        font-size: 1.8em;
    }
    .pfp {
        width: 95px;
        height: 95px;
    }
    .uop {
        width: 32px;
        height: 32px;
    }
    .headers{
        height: 35px;
        font-size: 1.4rem;
        text-align: center;
        
    }
    .social-media{
        padding: 8px;
    }
    .social-icon{
        width: 85px;
        height: 85px;
        max-width: 100%;
        max-height: 100%;
    }
    .skills {
        padding: 10px 25px;
        gap: 8px;
    }
    .skill-item {
        padding: 8px 12px;
    }
    .languages {
        padding: 10px 25px;
        gap: 8px;
    }
    .language-item {
        padding: 13px 18px;
    }
    .about-section {
        padding: 12px 25px;
    }
    .hobbies-grid {
        padding: 12px 25px;
    }
    .projects-container {
        padding: 12px 25px;
    }
    .project-header {
        cursor: pointer;
    }
    .toggle-icon {
        display: block;
    }
    .project-card.collapsed .project-header {
        margin-bottom: 0;
    }
    .project-card.collapsed:hover {
        transform: none;
    }
}
@media screen and (min-width: 1024px){
    .container {
        max-width: 100%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 3fr;
        grid-template-rows: auto auto 1fr;
        grid-template-areas: 
            "h h"
            "h h"
            "n c";
        grid-gap: 20px;
        padding: 0px;
    }

    .header {
        grid-area: h;
        font-size: 1.5rem;
        padding: 3.5vh 0;
        background-position: center;
        background-size: cover;
    }
    .header h1 {
        font-size: 2.2em;
    }
    .pfp {
        width: 120px;
        height: 120px;
        border: 5px solid #00BFA6;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    }
    .uop {
        width: 40px;
        height: 40px;
    }

    .social-bar {
        grid-area: n;
        background-color: #fff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 0 15px rgba(0,0,0,0.05);
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 1.2rem;
        gap: 20px;
    }

    .content {
        grid-area: c;
        font-size: 1.3rem;
        background-color: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 0 20px rgba(0,0,0,0.05);
    }

    .pfp {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        margin-bottom: 10px;
        border: 4px solid #00BFA6;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    }

    .uop {
        width: 45px;
    }

    .headers {
        font-size: 1.6rem;
        width: 100%;
        padding: 10px;
        text-align: center;
        color: whitesmoke;
        border-radius: 6px;
    }

    .social-media {
        display: flex;
        flex-direction: row;
        gap: 20px;
        align-items: center;
    }

    .social-icon {
        width: 90px;
        height: 90px;
        transition: 0.3s;
    }

    .social-icon:hover {
        transform: scale(1.15);
    }

    .skills {
        padding: 15px 25px;
        gap: 10px;
    }

    .skill-item {
        padding: 10px 15px;
    }

    .button {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
}
