@import './locomotive-scroll.css';


/* Import the fonts */
@font-face {
    font-family: 'Berlin Sans FB';
    src: url('./Assets/fonts/berlinsansfb.ttf') format('truetype');
    font-weight: lighter;
    font-style: normal;
}

@font-face {
    font-family: 'Berlin Sans FB Bold';
    src: url('./Assets/fonts/berlinsansfbdemi.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* Define colors and fonts */
:root {
    /* --primary-color: #100D28;
    --secondary-color: #FECEE9;
    --tertiary-color: #9381FF;
    --accent-color: #ff8600; */

    --primary-color: #545170;
    --secondary-color: #FECEE9;
    --tertiary-color: #e1dcff;
    --accent-color: #ff8600;

    --font-primary: 'Berlin Sans FB', sans-serif;
    --font-bold: 'Berlin Sans FB Bold', sans-serif;
}

/* Apply the styles */
body {
    font-family: var(--font-primary);
    background-color: var(--primary-color);
    color: var(--primary-color);
    overflow-x: hidden;
}

h1 {
    font-family: var(--font-bold);
    color: var(--secondary-color);
    font-size: 4rem;
}

button {
    background-color: var(--accent-color);
    width: 6rem;
    height: 3rem;
    color: var(--primary-color);
    font-family: var(--font-bold);
    font-size: x-large;
    margin: 5px;
}

button:hover {
    background-color: var(--secondary-color);
    color: var(--accent-color);
}

button:active {
    background-color: var(--tertiary-color);
    color: var(--primary-color);
}


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

html {
    scroll-behavior: smooth;
}

hr {

    width: 100%;
    height: 2px;
    border: none;
    margin: 1rem 0;
    border-top: 2px solid var(--tertiary-color);
}


h1,
h2,
h3,
h4,
h5,
h6,
p,
img {
    padding: 3px;
}

.dark-font {
    color: var(--primary-color);
}

.accent-font {
    color: var(--accent-color);
}

h2 {
    color: var(--accent-color);
    font-size: x-large;
}

p,
a {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    line-height: 20px;
}

footer {
    background-color: var(--tertiary-color);
    height: 10vh;
    text-align: center;
    padding: 16px;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    /* Aligns logo to the left and menu to the right on desktop */
    align-items: center;
    background-color: #100d28c8;
    color: var(--secondary-color);
    padding: .5rem 150px .5rem 150px;
    position: sticky;
    top: 0;
    z-index: 1000;

}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    width: auto;
    padding-top: 20px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

nav ul li {
    margin-left: 1.5rem;
    display: flex;
    align-items: center;
}

nav ul li a {
    color: var(--secondary-color);
    font-family: var(--font-bold);
    text-decoration: none;
    font-size: 2.5rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

/* Filter Dropdown */
.filter-dropdown {
    position: relative;
}

.filter-dropdown button {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    margin-left: 1rem;
    /* Adjust spacing from the previous nav item */
    width: fit-content;

}

.filter-dropdown button:hover {
    background-color: #FF5722;
    color: #fff;
}

.filter-dropdown ul {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    list-style: none;
    padding: 0 !important;
    /* Removed extra padding */
    margin: 0 !important;
    /* Reset margin */
    display: none;
    z-index: 1000;

}

.filter-dropdown ul li {
    margin: 0 !important;
    padding: 0 !important;
}

.filter-dropdown ul li button {
    background: none;
    border: none;
    color: #FF5722;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 0rem 0.5rem;
    /* Reduce padding inside buttons */
    text-align: left;
    display: block;
    /* Ensure buttons take full width of the li */

}

.filter-dropdown ul li button:hover {
    text-decoration: underline;
}

/* Grid Layout */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 10px;
    padding: 1.5%;
    margin: 0;
    max-width: 100%;
    width: 100%;
}

.grid-item {
    position: relative;
    /* Make the container relative for positioning overlay */
    background-color: #2d2855;
    border-radius: 0px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    margin: 0.5rem;
    min-height: 400px;
}

.grid-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

/* Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    /* Transparent color */
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
}

.grid-item:hover .overlay {
    opacity: 1;
}

/* Text inside overlay */
.text {
    font-family: var(--font-primary);
    color: var(--secondary-color);
    padding: 1rem;
    visibility: visible;
    /* Ensure visibility */
    z-index: 2;
}

.text h3,
.text .filter-tag,
.text .description {
    margin: 0.5rem 0;
}

.text h3 {
    display: block;
    font-size: 2rem;

    /* Ensure the title is displayed */
}

.text .filter-tag {
    font-style: italic;
    font-size: 1.5rem;
    color: var(--accent-color);
    /* Example tag color */
}

.text .description {
    font-size: 1rem;
}

.clickable-grid {
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0);
    /* Transparent color */
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    /* Ensure clickable-grid is below text and overlay */
    cursor: pointer;
}

/* .text .more-button {
    background-color: #FF5722;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 0.5rem;
}

.text .more-button:hover {
    background-color: #FF3D00;
} */

/* Hide the more button on desktop */
@media (min-width: 1024px) {
    .text .more-button {
        display: none;
    }


}

/* Remove existing styles */
.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    /* Remove border */
}




/* Example for specific grid items */
.grid-item.large {
    grid-column: span 2;
    /* This will make the item span across 2 columns */
}

.grid-item.tall {
    grid-row: span 2;
    /* This will make the item span across 2 rows */
}

.grid-item.large-tall {
    grid-column: span 2;
    /* This will make the item span across 2 columns */
    grid-row: span 2;
    /* This will make the item span across 2 rows */
}

/* Show Dropdown on Hover */
.filter-dropdown:hover ul {
    display: block;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {

    /* Tablet and phone screens */
    nav {
        flex-direction: column;
        /* Stack the logo and menu vertically */
        align-items: center;
        /* Center the items */
        padding: 1.5rem;
        /* Adjust padding */
    }

    .logo {
        margin-bottom: 1rem;
        font-size: 1.8rem;
        /* Slightly larger logo */
    }

    nav ul {
        flex-direction: row;
        /* Align menu items in a row */
        justify-content: center;
        /* Center the menu items */
        width: 100%;
        /* Ensure the menu spans the full width */
        margin-top: 1rem;
        /* Space between logo and menu */
    }

    nav ul li a {
        font-size: 1.2rem;
        margin-left: 0rem;
        margin-bottom: 0.5rem;
        text-decoration: none;
        /* Add space between items */
    }

    .filter-dropdown {
        margin-left: 0;
        /* change left margin for filter button */

    }

    .filter-dropdown button {
        font-size: 1.2rem;
        background-color: var(--secondary-color);

    }

    .filter-dropdown ul {
        left: -50px;
        width: fit-content;
    }

    /*grid layout*/
    .grid-item.large {
        grid-column: span 1;
        /* This will make the item span across 2 columns */
    }

    .grid-item.tall {
        grid-row: span 1;
        /* This will make the item span across 2 rows */
    }

    .grid-item.large-tall {
        grid-column: span 1;
        /* This will make the item span across 2 columns */
        grid-row: span 1;
        /* This will make the item span across 2 rows */
    }

    /* .clickable-grid {
        display: none;
    } */
}

/* Scroll Progress Bar */
#progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--secondary-color);
    z-index: 9999;
}

#progress-bar {
    height: 100%;
    width: 0;
    background: var(--accent-color);
}

/* Parallax Sections */
.parallax {
    height: 500px;
    /* Adjust height as needed */
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.parallax-1 {
    background-image: url('https://via.placeholder.com/1920x1080');
}

.parallax-2 {
    background-image: url('https://via.placeholder.com/1920x1080');
}

.content {
    padding: 2rem;
    text-align: center;
}



/*TESTING Sticky side*/
/*https://medium.com/@clairecodes/making-a-sticky-sidebar-with-two-lines-of-css-280169eac624*/

/* Default styles for desktop and larger screens */
.wrapper {
    display: flex;
    justify-content: space-between;
}

.wrapper img {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    height: auto;


}

.sidebar {
    background-color: var(--primary-color);
    width: 30%;
    height: 100vh;
    min-height: 200px;
    overflow: auto;
    position: -webkit-sticky;
    position: sticky;
    top: 0.5%;
    text-align: center;
    color: var(--accent-color);
    padding: 15px;
    display: flex;
    justify-content: center;
    /* Centers horizontally */
    align-items: center;
    /* Centers vertically */
    flex-direction: column;
    /* Aligns children vertically */

}

.sidebar .title {
    color: var(--secondary-color) !important;
    font-family: var(--font-bold);
    padding: 30px;
}

.sidebar .body {
    color: var(--secondary-color);
    font-family: var(--font-primary);
    padding-top: 30px !important;
    width: 70%;
}

.sidebar .tags {
    color: var(--accent-color) !important;
    font-family: var(--font-bold);
}

.sidebar .year {
    color: var(--secondary-color);
    font-family: var(--font-primary);
}

figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    display: inline-block;
    /* makes figure match the image height */
}


figcaption {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 6px 10px;
    font-size: 1rem;
    border-radius: 4px;
    width: auto;
    max-width: 90%;
    box-sizing: border-box;
}



.main {
    background-color: white;
    width: 70%;
    height: 100%;
    min-height: 1000px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px;

}


/* Gallery Styles for Desktop and Larger Screens */
.main .gallery {
    display: grid;
    /* Added: Use grid layout for gallery */
    grid-template-columns: repeat(3, 1fr);
    /* Added: 3 images per row on large screens */
    gap: 20px;
    /* Added: Space between images */
    width: 100%;
}

.gallery2 {
    display: grid;
    /* Added: Use grid layout for gallery */
    grid-template-columns: repeat(2, 1fr);
    /* Added: 2 images per row on large screens */
    gap: 20px;
    /* Added: Space between images */
    width: 100%;
}

.main .gallery img {
    width: 100%;
    /* Added: Ensure images take full width of their container */
    height: auto;
}


.gallery2 figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    display: inline-block;
    /* makes figure match the image height */
}

.gallery2 img {
    display: block;
    width: 100%;
    /* scale correctly inside grid */
    height: auto;
}

.gallery2 figcaption {
    position: absolute;
    top: 10px !important;
    left: 10px;
    bottom: auto;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 6px 10px;
    font-size: 1rem;
    border-radius: 4px;
    width: auto !important;
    height: auto !important;
    max-width: 90%;
    box-sizing: border-box;
}




/* Styles for tablet and phone view (max-width: 768px) */
@media (max-width: 768px) {
    .wrapper {
        flex-direction: column;
        /* Change layout to column */
    }

    .sidebar {
        position: static;
        /* Remove sticky positioning */
        width: 100%;
        /* Full width */
        height: auto;
        /* Adjust height to fit content */
    }

    .main {
        width: 100%;
        /* Full width */
        height: auto;
        /* Adjust height to fit content */
    }

    /* Gallery Styles for Mobile */
    .main .gallery {
        grid-template-columns: 1fr;
        /* Added: 1 image per row on mobile */
        gap: 15px;
        /* Added: Space between images */
    }

    .main .gallery2 {
        grid-template-columns: 1fr;
        /* Added: 1 image per row on mobile */
        gap: 15px;
        /* Added: Space between images */
    }
}


/*DELETE LATER*/
#header,
#footer {
    width: 100%;
    height: 200px;
    background-color: var(--primary-color);
    text-align: center;
}


/* Preloader styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Spinner animation */
.spinner {
    width: 50px;
    height: 50px;
    border: 6px solid #cccccc;
    border-top: 6px solid #ffae00;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Keyframe for spinner */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}



/* Scroll-to-top button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    /* Distance from the bottom of the page */
    right: 20px;
    /* Distance from the right side of the page */
    font-size: 30px;
    background-color: var(--secondary-color);
    /* Your accent color */
    color: var(--primary-color);
    border-radius: 50%;
    width: 50px;
    /* Size of the button */
    height: 50px;
    /* Size of the button */
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 5px 3px rgba(28, 5, 176, 0.7);
    opacity: 0.8;
    transition: opacity 0.3s ease;
    z-index: 1000;
    /* Make sure it appears above all other elements */

}

.scroll-to-top:hover {
    opacity: 1;
    box-shadow: 0 8px 3px rgba(28, 5, 176, 0.7);

}

/* Scroll animation */
html {
    scroll-behavior: smooth;
}


canvas {
    width: 600px !important;
    /* Force width */
    height: 600px !important;
    /* Force height */
    display: block;
    border: 2px solid black;
    /* Optional border for visibility */
}


/* Placeholder styles */
/* ///// inputs /////*/
/* Ensure the main content takes up all available space */
#contact {
    flex: 1;
    /* Pushes the footer down */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Centers the form vertically */
    align-items: center;
    /* Centers the form horizontally */
    text-align: center;
}

label {
    font-family: var(--font-primary);
    font-size: 1.2rem;
}



input:focus~label,
textarea:focus~label,
input:not(:placeholder-shown)~label,
textarea:not(:placeholder-shown)~label {
    font-size: 0.9em;
    color: var(--accent-color);
    top: -10px;
    transition: all 0.225s ease;
}

.styled-input {
    float: left;
    width: 293px;
    margin: 1rem 0;
    position: relative;
    border-radius: 4px;
}

@media only screen and (max-width: 768px) {
    form {
        width: 80%;
    }

    .styled-input {
        width: 100%;
    }
}

.styled-input label {
    color: var(--primary-color);
    padding: 1.3rem 30px 1rem 30px;
    position: absolute;
    top: 10px;
    left: 0;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    pointer-events: none;
}

.styled-input.wide {
    width: 650px;
    max-width: 100%;
}

input,
textarea {
    padding: 30px;
    border: 1;
    border-color: var(--secondary-color);
    width: 100%;
    font-size: 1.2rem;
    font-family: var(--font-primary);
    color: var(--primary-color);
    border-radius: 4px;
}

input:hover,
textarea:hover {
    background-color: var(--secondary-color);

}

input:focus,
textarea:focus {
    outline: 0;
    background-color: var(--secondary-color);
}

input:focus~span,
textarea:focus~span {
    width: 100%;
    -webkit-transition: all 0.075s ease;
    transition: all 0.075s ease;
}

textarea {
    width: 100%;
    min-height: 15em;
}

#warning-message {
    font-size: x-large;
    color: #fa4e65 !important;
}

.input-container {
    width: 650px;
    max-width: 100%;
    margin: 20px auto 25px auto;
}

.submit-btn {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.06),
        0 2px 10px 0 rgba(65, 12, 116, 0.07);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.submit-btn:hover {
    transform: translateY(1px);
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.10),
        0 1px 1px 0 rgba(0, 0, 0, 0.09);
}

@media (max-width: 768px) {
    .submit-btn {
        width: 40%;
        float: none;
        text-align: center;
    }
}

input[type=checkbox]+label {
    color: #ccc;
    font-style: italic;
}

input[type=checkbox]:checked+label {
    color: rgb(235, 150, 150);
    font-style: normal;
}

.about {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px 0px;
    text-align: center;
    justify-content: center;
}

.about h1 {
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.about-content {
    display: inline-grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    text-align: left;
}

.about-content img {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: block;
    padding: 0px;
    border-radius: 20px;
}

.about h2 {
    font-size: 1.3rem;
    line-height: 1.4;
    font-weight: 400;
    padding: 20px 0px;
    font-family: var(--font-primary)
}

/* Responsive: stack on small screens */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-content h2 {
        margin-top: 20px;
    }

    .about h2 {
        padding: 0px;
    }


}

.outer-headings {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.inner-headings {
    border: 0px solid #ddd;
    height: 50px;
    line-height: 50px;
    font-size: 45px;
    overflow: hidden;
}

.inner-headings span {
    position: relative;
    color: var(--accent-color);
    animation: animation 7s ease infinite;

}

@keyframes animation {

    0%,
    100% {
        top: 0;
    }

    20% {
        top: 0;
    }

    25% {
        top: -50px;
    }

    45% {
        top: -50px;
    }

    50% {
        top: -100px;
    }

    70% {
        top: -100px;
    }

    75% {
        top: -150px;
    }

    95% {
        top: -150px;
    }
}


.cv-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr 120px;
    gap: 40px;
    padding: 50px;
    max-width: 1400px;
    margin: auto;
}

.cv-main,
.cv-details {
    padding: 20px;
    border-radius: 23px;
    background: #545170;
    box-shadow: 11px 11px 22px #3d3b52,
        -11px -11px 22px #6b678e;
    color: white;
}

.cv-sidebar {
    border-radius: 23px;
    background: #807ca1;
    box-shadow: 11px 11px 22px #3d3b52,
        -11px -11px 22px #6b678e;
    color: #fff;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cv-sidebar h2 {
    margin-bottom: 20px;
    color: var(--accent-color);
}

.cv-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cv-sidebar li {
    font-size: large;
    position: relative;
    text-align: center;
    margin-bottom: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Icon styling */
.cv-sidebar img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease, filter 0.3s ease;
    display: block;
    margin: 0 auto;
}

/* Label hidden by default */
.cv-sidebar li::after {
    content: attr(data-label);
    display: block;
    font-size: 0.8em;
    color: #fff;
    margin-top: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@media screen and (min-width: 768px) {

    /* Hover effects */
    .cv-sidebar li:hover img {
        transform: scale(1.3);
        filter: drop-shadow(0 0 5px #fecee9);
        text-decoration: none;
    }
}

.cv-sidebar li:hover::after {
    opacity: 1;
}

.cv-main h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

.cv-main h2,
.cv-details h2 {
    margin-top: 20px;
    border-bottom: 2px solid #ccc;
    padding-bottom: 5px;
}

.cv-details h3,
.cv-main h3 {
    margin-top: 15px;
    font-size: x-large;
    font-family: var(--font-bold);
}

.cv-details p,
.cv-main p {
    font-family: var(--font-bold);
    font-size: medium;
    color: var(--secondary-color);
}

.cv-main ul,
.cv-details ul {
    list-style-type: disc;
    margin-left: 20px;
    font-size: 1.1em;
}

a {
    color: #f8e7ad;
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    text-decoration: underline;
}

/* 📱 Responsive layout for phones */
@media screen and (max-width: 768px) {
    .cv-grid-container {
        display: block;
        padding: 10px;
    }

    .cv-sidebar,
    .cv-main,
    .cv-details {
        margin-bottom: 20px;
        border-radius: 0;
    }

    .cv-main h1 {
        font-size: 1.5em;
    }

    .cv-main h2,
    .cv-details h2 {
        font-size: 1.2em;
    }

    .cv-main p,
    .cv-details p {
        font-size: 0.9em;
        font-family: var(--font-primary);
    }

    /* Mobile: show text only, hide icons */
    .cv-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        padding: 10px;
    }

    .cv-sidebar ul {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 20px;
        justify-items: center;
    }

    .cv-sidebar li {
        margin: 0;
        text-align: center;
    }

    .cv-sidebar img {
        display: block;
    }

    .cv-sidebar li::after {
        opacity: 1;
        font-size: 0.9em;
        color: #fff;
        margin-top: 6px;
    }


}


blockquote {
    font-family: var(--font-bold);
    font-weight: 100;
    font-size: 2rem;
    max-width: 600px;
    line-height: 1.4;
    position: relative;
    margin: 0;
    padding: .5rem;
}

blockquote:before,
blockquote:after {
    position: absolute;
    color: var(--secondary-color);
    font-size: 8rem;
    width: 4rem;
    height: 4rem;
}

blockquote:before {
    content: '“';
    left: -5rem;
    top: -2rem;
}

blockquote:after {
    content: '”';
    right: -5rem;
    bottom: 1rem;
}

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

    blockquote:before,
    blockquote:after {
        font-size: 4rem;
        width: 4rem;
        height: 4rem;
    }

    blockquote:before {
        left: -1rem;
    }

    blockquote:after {
        right: -1rem;
    }
}

cite {
    font-family: var(--font-primary);
    color: var(--accent-color);
    font-size: large;
    line-height: 3;
    text-align: left;
}