* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0a0a;
}
img{
    max-width: 100%;
    height: auto;
    display: block;
}

a{
    text-decoration: none;
    color: inherit;
}

nav{
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(71, 160, 37, 0.3),
                inset 0 -1px 0 rgba(71, 160, 37, 0.5);
    border-bottom: 2px solid rgba(71, 160, 37, 0.4);
    backdrop-filter: blur(10px);
}

nav div{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav h2{
    color: #47A025;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(71, 160, 37, 0.8),
                 0 0 40px rgba(71, 160, 37, 0.4);
    font-family: 'Courier New', monospace;
    position: relative;
    transition: all 0.3s ease;
}

nav h2::before{
    content: 'Br';
    position: absolute;
    left: -40px;
    top: -5px;
    font-size: 1.5rem;
    color: #00ff41;
    background: rgba(0, 255, 65, 0.1);
    border: 2px solid #00ff41;
    padding: 0.2rem 0.4rem;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.6);
}

nav h2::after{
    content: 'Ba';
    position: absolute;
    right: -40px;
    top: -5px;
    font-size: 1.5rem;
    color: #00ff41;
    background: rgba(0, 255, 65, 0.1);
    border: 2px solid #00ff41;
    padding: 0.2rem 0.4rem;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.6);
}

nav h2:hover{
    text-shadow: 0 0 30px rgba(71, 160, 37, 1),
                 0 0 60px rgba(71, 160, 37, 0.6);
    transform: scale(1.05);
}

nav ul{
    list-style: none;
    display: flex;
    gap: 1rem;
}

nav a {
    color: #ccc;
    font-weight: bold;
    transition: all 0.3s ease;
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid transparent;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

nav a::before{
    content: '⚗';
    position: absolute;
    left: 0.3rem;
    opacity: 0;
    transition: all 0.3s ease;
    color: #00ff41;
}

nav a:hover::before{
    opacity: 1;
    left: 0.5rem;
}

nav a:hover{
    color: #00ff41;
    background: rgba(71, 160, 37, 0.1);
    border-color: rgba(71, 160, 37, 0.5);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.6);
    padding-left: 2rem;
}

#Home{
    height: 100vh;
    background-image: url('images/breaking-bad-title.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    height: 100vh;
    min-height: 500px;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

#Home::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 1;
}

#Home div{
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 2rem;
}

.title-container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.periodic-element{
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 3px solid #47A025;
    border-radius: 12px;
    padding: 0.8rem 1.2rem;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(71, 160, 37, 0.6),
                inset 0 0 30px rgba(71, 160, 37, 0.15);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    animation: pulse-glow 3s infinite ease-in-out;
}

.periodic-element:hover{
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(71, 160, 37, 0.8),
                inset 0 0 50px rgba(71, 160, 37, 0.3);
    border-color: #00ff41;
}

.atomic-number{
    position: absolute;
    top: 5px;
    left: 8px;
    font-size: 0.75rem;
    color: rgba(71, 160, 37, 0.7);
    font-weight: bold;
}

.element-symbol{
    font-size: 3.5rem;
    font-weight: bold;
    color: #47A025;
    text-shadow: 0 0 20px rgba(71, 160, 37, 0.9);
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
}

#Home h1{
    font-size: 4.5rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 3px 3px 15px rgba(0,0,0,0.9),
                 0 0 30px rgba(71, 160, 37, 0.5);
    margin: 0;
    letter-spacing: 8px;
    font-family: 'Courier New', monospace;
}

.subtitle{
    font-size: 1.8rem;
    color: #00ff41;
    text-shadow: 0 0 15px rgba(0, 255, 65, 0.6),
                 2px 2px 10px rgba(0,0,0,0.8);
    max-width: 800px;
    margin: 0 auto 1rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.tagline{
    font-size: 1.2rem;
    color: #ccc;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-style: italic;
    letter-spacing: 1px;
}

.scroll-indicator{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 4rem;
    animation: fade-in-up 2s ease-out;
}

.scroll-indicator span{
    font-size: 1rem;
    color: #47A025;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(71, 160, 37, 0.6);
}

.arrow-down{
    font-size: 2.5rem;
    color: #00ff41;
    animation: bounce-arrow 2s infinite ease-in-out;
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.8);
}

@keyframes pulse-glow{
    0%, 100%{
        box-shadow: 0 8px 25px rgba(71, 160, 37, 0.6),
                    inset 0 0 30px rgba(71, 160, 37, 0.15);
    }
    50%{
        box-shadow: 0 8px 35px rgba(71, 160, 37, 0.9),
                    inset 0 0 50px rgba(71, 160, 37, 0.25);
    }
}

@keyframes bounce-arrow{
    0%, 100%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(15px);
    }
}

@keyframes fade-in-up{
    0%{
        opacity: 0;
        transform: translateY(20px);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}

#About{
    background-color: #1a1a1a;
    padding: 5rem 2rem;
    color:  #fff;
}

#About > div{
    max-width: 1000px;
    margin: 0 auto;
}

#About h2{
    font-size: 3rem;
    color: #47A025;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 3px;
}

#About p{
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    text-align: justify;
    line-height: 1.9;
    color: #e0e0e0;
}

.highlight{
    color: #00ff41;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.4);
    padding: 0 0.2rem;
}

.character-link{
    color: #47A025;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid rgba(71, 160, 37, 0.3);
    transition: all 0.3s ease;
    padding-bottom: 2px;
}

.character-link:hover{
    color: #00ff41;
    border-bottom-color: #00ff41;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.6);
}

.series-acclaim{
    background: linear-gradient(135deg, rgba(71, 160, 37, 0.1) 0%, rgba(0, 255, 65, 0.05) 100%);
    border-left: 4px solid #47A025;
    padding: 1.2rem 1.5rem;
    border-radius: 8px;
    font-style: italic;
    box-shadow: 0 4px 15px rgba(71, 160, 37, 0.2);
}

#About p em{
    color: #ffd700;
    font-style: italic;
    font-weight: bold;
}

.stats-container{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.stat-card{
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 3px solid #47A025;
    border-radius: 12px;
    padding: 1.5rem;
    min-width: 180px;
    max-width: 200px;
    flex: 1;
    text-align: left;
    box-shadow: 0 8px 25px rgba(71, 160, 37, 0.4),
                inset 0 0 30px rgba(71, 160, 37, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-card:hover{
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(71, 160, 37, 0.6),
                inset 0 0 50px rgba(71, 160, 37, 0.2);
    border-color: #00ff41;
}

.element-number{
    position: absolute;
    top: 8px;
    left: 12px;
    font-size: 0.8rem;
    color: rgba(71, 160, 37, 0.6);
    font-weight: bold;
}

.element-symbol{
    font-size: 3rem;
    font-weight: bold;
    color: #47A025;
    text-shadow: 0 0 20px rgba(71, 160, 37, 0.8);
    margin-bottom: 0.5rem;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
}

.stat-value{
    font-size: 2.5rem;
    font-weight: bold;
    color: #00ff41;
    margin-bottom: 0.3rem;
    text-shadow: 0 0 15px rgba(0, 255, 65, 0.6);
}

.stat-label{
    font-size: 0.9rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#Characters{
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    color: #fff;
    padding: 5rem 2rem;
    position: relative;
}

#Characters::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(71, 160, 37, 0.03) 2px, rgba(71, 160, 37, 0.03) 4px);
    pointer-events: none;
}

#Characters > div{
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-header{
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.chemical-formula{
    font-size: 1.2rem;
    color: rgba(71, 160, 37, 0.6);
    font-family: 'Courier New', monospace;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(71, 160, 37, 0.4);
}

.section-header h2{
    font-size: 3.5rem;
    color: #47A025;
    margin-bottom: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(71, 160, 37, 0.8);
    font-family: 'Courier New', monospace;
}

.section-subtitle{
    font-size: 1.5rem;
    color: #00ff41;
    margin-bottom: 1rem;
    font-style: italic;
    text-shadow: 0 0 15px rgba(0, 255, 65, 0.5);
}

.section-description{
    font-size: 1.1rem;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto;
}

.character-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    justify-items: center;
}

.character-card{
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 3px solid rgba(71, 160, 37, 0.4);
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    max-width: 320px;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5),
                inset 0 0 30px rgba(71, 160, 37, 0.05);
}

.character-card::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(71, 160, 37, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.character-card:hover{
    transform: translateY(-15px) scale(1.02);
    border-color: #00ff41;
    box-shadow: 0 20px 50px rgba(71, 160, 37, 0.6),
                inset 0 0 50px rgba(71, 160, 37, 0.15);
}

.character-card:hover::before{
    opacity: 1;
}

.character-card a{
    text-decoration: none;
    color: inherit;
    display: block;
}

.card-image-wrapper{
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.card-image-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.character-card:hover .card-image-wrapper img{
    transform: scale(1.1);
}

.card-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.character-card:hover .card-overlay{
    opacity: 1;
}

.view-profile{
    color: #00ff41;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(0, 255, 65, 0.8);
}

.card-content{
    padding: 1.8rem;
    position: relative;
}

.card-number{
    position: absolute;
    top: -20px;
    right: 20px;
    background: linear-gradient(135deg, #47A025 0%, #5bc42e 100%);
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(71, 160, 37, 0.6);
    font-family: 'Courier New', monospace;
}

.card-content h3{
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.card-content .character-alias{
    font-size: 1.1rem;
    color: #00ff41;
    font-style: italic;
    margin-bottom: 1.2rem;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.4);
}

.element-badge{
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(71, 160, 37, 0.15);
    border: 2px solid #47A025;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    margin-top: 0.5rem;
}

.element-badge .element{
    font-size: 1.8rem;
    font-weight: bold;
    color: #47A025;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 15px rgba(71, 160, 37, 0.6);
}

.element-badge .atomic{
    font-size: 0.9rem;
    color: rgba(71, 160, 37, 0.7);
    font-weight: bold;
}

footer{
    background-color:#000;
    color: #fff;
    text-align: center;
    padding: 2 rem 1 rem;
}

footer div{
    max-width: 1200px;
    margin: 0 auto;
}

footer p{
    margin-bottom: 0.5 rem;
    font-size: 0.9 rem;
    color: #ccc;
}

footer a{
    color: #0fa30f;
    text-decoration: none;
    margin: 0 1 rem;
    transition: color 0.3s ease;
}

footer a:hover{
    color: #fff;
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE DESIGN - MEDIA QUERIES
   ============================================ */

/* Extra Small Devices (Phones, 320px to 480px) */
@media screen and (max-width: 480px) {
    /* Navigation */
    nav {
        padding: 0.8rem 1rem;
    }

    nav h2 {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    nav h2::before,
    nav h2::after {
        display: none; /* Hide Br/Ba elements on very small screens */
    }

    nav ul {
        gap: 0.3rem;
    }

    nav a {
        font-size: 0.7rem;
        padding: 0.4rem 0.6rem;
        letter-spacing: 0.5px;
    }

    nav a::before {
        display: none; /* Hide beaker icons on mobile */
    }

    nav a:hover {
        padding-left: 0.6rem;
    }

    /* Home Section */
    #Home {
        min-height: 100vh;
        padding: 1rem;
    }

    .title-container {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .periodic-element {
        min-width: 60px;
        padding: 0.5rem 0.8rem;
    }

    .element-symbol {
        font-size: 2rem;
    }

    .atomic-number {
        font-size: 0.6rem;
    }

    #Home h1 {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
        padding: 0 1rem;
    }

    .tagline {
        font-size: 0.9rem;
        padding: 0 1rem;
        margin: 0 auto 2rem;
    }

    .scroll-indicator {
        margin-top: 2rem;
    }

    .scroll-indicator span {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    .arrow-down {
        font-size: 2rem;
    }

    /* About Section */
    #About {
        padding: 3rem 1.5rem;
    }

    #About h2 {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    #About p {
        font-size: 0.95rem;
        text-align: left;
    }

    .stats-container {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .stat-card {
        min-width: 140px;
        max-width: 160px;
        padding: 1.2rem;
    }

    .element-symbol {
        font-size: 2.2rem;
    }

    .stat-value {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* Characters Section */
    #Characters {
        padding: 3rem 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .chemical-formula {
        font-size: 0.9rem;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .section-description {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .character-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .character-card {
        max-width: 100%;
    }

    .card-image-wrapper {
        height: 280px;
    }

    .card-number {
        font-size: 1.2rem;
        padding: 0.4rem 0.8rem;
        top: -15px;
        right: 15px;
    }

    .card-content h3 {
        font-size: 1.4rem;
    }

    .card-content .character-alias {
        font-size: 1rem;
    }

    .element-badge .element {
        font-size: 1.4rem;
    }

    /* Footer */
    footer {
        padding: 1.5rem 1rem;
    }

    footer p {
        font-size: 0.85rem;
    }

    footer a {
        font-size: 0.85rem;
        margin: 0 0.5rem;
        display: inline-block;
        margin-top: 0.5rem;
    }
}

/* Small Devices (Small Tablets, 481px to 768px) */
@media screen and (min-width: 481px) and (max-width: 768px) {
    /* Navigation */
    nav {
        padding: 1rem 1.5rem;
    }

    nav h2 {
        font-size: 1.5rem;
        letter-spacing: 3px;
    }

    nav h2::before {
        left: -35px;
        font-size: 1.2rem;
    }

    nav h2::after {
        right: -35px;
        font-size: 1.2rem;
    }

    nav ul {
        gap: 0.5rem;
    }

    nav a {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }

    /* Home Section */
    #Home {
        padding: 1.5rem;
    }

    .title-container {
        gap: 0.8rem;
    }

    .periodic-element {
        min-width: 80px;
        padding: 0.6rem 1rem;
    }

    .element-symbol {
        font-size: 2.8rem;
    }

    #Home h1 {
        font-size: 3rem;
        letter-spacing: 5px;
    }

    .subtitle {
        font-size: 1.3rem;
    }

    .tagline {
        font-size: 1rem;
    }

    /* About Section */
    #About {
        padding: 4rem 2rem;
    }

    #About h2 {
        font-size: 2.5rem;
    }

    #About p {
        font-size: 1rem;
    }

    .stats-container {
        gap: 1.5rem;
    }

    .stat-card {
        min-width: 150px;
        max-width: 170px;
    }

    /* Characters Section */
    #Characters {
        padding: 4rem 1.5rem;
    }

    .section-header h2 {
        font-size: 2.8rem;
    }

    .section-subtitle {
        font-size: 1.2rem;
    }

    .character-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .card-image-wrapper {
        height: 300px;
    }
}

/* Medium Devices (Tablets, 769px to 1024px) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    /* Navigation */
    nav h2 {
        font-size: 1.8rem;
    }

    nav h2::before {
        left: -38px;
    }

    nav h2::after {
        right: -38px;
    }

    /* Home Section */
    .periodic-element {
        min-width: 90px;
    }

    #Home h1 {
        font-size: 3.5rem;
        letter-spacing: 6px;
    }

    .subtitle {
        font-size: 1.5rem;
    }

    /* About Section */
    #About h2 {
        font-size: 2.8rem;
    }

    .stats-container {
        gap: 1.8rem;
    }

    /* Characters Section */
    .section-header h2 {
        font-size: 3rem;
    }

    .character-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.2rem;
    }

    .character-card {
        max-width: 350px;
    }
}

/* Large Devices (Laptops, 1025px to 1440px) */
@media screen and (min-width: 1025px) and (max-width: 1440px) {
    .character-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stat-card {
        min-width: 170px;
        max-width: 190px;
    }
}

/* Extra Large Devices (Desktops, 1441px and above) */
@media screen and (min-width: 1441px) {
    nav div,
    #About > div,
    #Characters > div {
        max-width: 1600px;
    }

    #Home h1 {
        font-size: 5rem;
    }

    .subtitle {
        font-size: 2rem;
    }

    #About h2 {
        font-size: 3.5rem;
    }

    .section-header h2 {
        font-size: 4rem;
    }

    .character-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        max-width: 1800px;
        margin: 0 auto;
    }
}

/* Landscape Orientation for Small Devices */
@media screen and (max-width: 768px) and (orientation: landscape) {
    #Home {
        min-height: auto;
        padding: 2rem 1rem;
    }

    .title-container {
        margin-bottom: 1rem;
    }

    .scroll-indicator {
        margin-top: 1.5rem;
    }

    .periodic-element {
        padding: 0.5rem 0.8rem;
    }

    .element-symbol {
        font-size: 2.2rem;
    }

    #Home h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .tagline {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
}

/* Print Styles */
@media print {
    nav,
    footer,
    .scroll-indicator {
        display: none;
    }

    #Home {
        page-break-after: always;
    }

    .character-card:hover {
        transform: none;
    }
}


