/* 

---------- TYPOGRAPHY ----------

FONT SIZES
12px / 16px / 20px / 24px / 32px / 40px / 48px / 62px

FONT WEIGHTS
400 / 700

LINE HEIGHTS
1.2 / 1.5

LETTER SPACING
0 / -2px

FONT FAMILY
Poppins

---------- COLORS ----------

PRIMARY
Base: #2F3B4C (Blue)
BG: #EFF3F4 (Grey)

SECONARY
Base: #DC3A74 (Pink)
TINT: #AD2153 (Deep Pink)

MISC
Grey: #aaaaaa

---------- BORDER RADIUS ----------

4px / 8px / 20px

---------- SPACING SYSTEM ----------

5px / 10px / 15px / 20px / 25px / 30px / 40px / 50px / 60px / 70px / 80px / 90px / 100px / 125px / 150px / 200px / 250px / 300px / 400px / 500px

*/

/* ----------------------- GLOBAL STYLES ----------------------- */

:root {
    /* FONT SIZE */
    --text-small: 1.4rem;
    --text-base: 1.5rem;
    --text-paragraph: 1.5rem;
    --text-h3: 2.2rem;
    --text-h2: 3rem;
    --text-h1: 4rem;

    /* FONT WEIGHT */
    --font-weight-normal: 600;
    --font-weight-bold: 700;

    /* LINE HEIGHTS */
    --line-height-very-tight: 1;
    --line-height-tight: 1.2;
    --line-height-normal: 1.4;

    /* LETTER SPACING */
    --letter-spacing-tight: -2px;
    --letter-spacing-medium: -1px;

    /* FONT FAMILY */
    --quicksand: "Quicksand", sans-serif;

    /* COLORS */
    --primary-base: #2F3B4C;
    --secondary-base: #DC3A74;
    --secondary-tint: #AD2153;
    --primary-bg: #EFF3F4;
    --misc-grey: #aaaaaa;
    --white: #ffffff;
    --black: #000000;
    --form-validation-warning: #fcd2d2;
    
    /* MISCELLANEOUS */
    --nav-height: 70px;
    --footer-height: 100px;
    --footer-height-mob: 150px;
    --full-width: 90%;
    --max-content-width: 1400px;
    --breakpoint-mobile: 700px;
}

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

html {
   font-size: 62.5%; 
}

body {
    font-family: var(--quicksand);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-normal);
    color: var(--primary-base);
    background-color: var(--primary-base);
}

h1, h2, h3, h4, h5 {
    font-weight: var(--font-weight-bold);
    color: var(--primary-base);
}

h1 {
    font-size: var(--text-h1);
    letter-spacing: var(--letter-spacing-tight);
    margin-bottom: 1.3rem;
    line-height: var(--line-height-tight);
}

h2 {
    font-size: var(--text-h2);
    letter-spacing: var(--letter-spacing-tight);
    margin-bottom: 0.5rem;
}

h3 {
    font-size: var(--text-h3);
    letter-spacing: var(--letter-spacing-medium);
    margin-bottom: 0.5rem;
}

p {
    font-size: var(--text-paragraph);
    margin-bottom: 0.8rem;
}

a {
    text-decoration: none;
    font-size: var(--text-base);
    display: inline-block;
    color: inherit;
}

ul {
    list-style: none;
}

ul.style-list {
    margin: 2rem 0;
    border-left: 3px solid var(--secondary-base);
}

ul.style-list li {
    font-size: var(--text-paragraph);
    margin-bottom: 0.2rem;
    margin-left: 1.5rem;
}

span {
    display: inline-block;
}

img {
    display: block;
    max-width: 100%;
}

.small-text {
    font-size: var(--text-small);
}

.white {
    color: var(--white);
}

.centre {
    text-align: center;
}

.bold {
    font-weight: var(--font-weight-bold);
}

.italic {
    font-style: italic;
}

.highlight {
    color: var(--secondary-base);
}

/* ----------------------- COMPONENTS ----------------------- */

/* ------ COOKIE BANNER ------ */

.cookie-banner {
    position: fixed;
    width: 400px;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--primary-base);
    border: 1px solid var(--white);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-message h3 {
    font-size: 1.8rem;
}

.cookie-message p {
    font-size: 1.3rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    font-size: 1.3rem;
    text-decoration: none;
    padding: 0.7rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: var(--font-weight-bold);
    /*margin: 1rem 0 2rem 0;*/
    transition: all .2s ease-in;
    cursor: pointer;
    font-family: var(--quicksand);
}

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

    .cookie-banner {
        width: var(--full-width);
        bottom: 2rem;
        right: 5%;
        gap: 1rem;
    }

    .cookie-buttons {
        justify-content: center;
    }

}

/* ------ BUTTONS ------ */

.btn {
    font-size: var(--text-base);
    text-decoration: none;
    padding: 1rem 2.2rem;
    border-radius: 0.5rem;
    font-weight: var(--font-weight-bold);
    margin: 1rem 0 2rem 0;
    transition: all .2s ease-in;
    cursor: pointer;
    font-family: var(--quicksand);
}

.btn-primary:link, .btn-primary:visited, .btn-primary {
    color: var(--white);
    background-color: var(--secondary-base);
    border: 1px solid var(--secondary-base);
}

.btn-primary:hover {
    background-color: var(--secondary-tint);
}

.btn-secondary:link, .btn-secondary:visited, .btn-secondary {
    color: var(--secondary-base);
    background-color: var(--white);
    border: 1px solid var(--secondary-base);
}

.btn-secondary:hover {
    background-color: var(--primary-bg);
}

.btn-tertiary:link, .btn-tertiary:visited {
    color: var(--white);
    background-color: var(--primary-base);
    border: 1px solid var(--primary-base);
}

.btn-tertiary:hover {
    background-color: var(--primary-bg);
    color: var(--primary-base);
}

/* ------ FORM INPUTS ------ */

textarea, input, select {
    width: 100%;
    height: 40px;
    background-color: var(--white);
    border: 1px solid var(--misc-grey);
    padding-left: 1rem;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    font-size: 1.5rem;
    font-weight: var(--font-weight-normal);
    color: var(--primary-base);
    font-family: var(--lato);
    border-radius: 0.7rem;
}

.input-validation-error {
    background-color: var(--form-validation-warning);
}

textarea {
    padding-top: 1rem;
    height: 150px;
}

input[type=submit] {
    border: 0;
    color: var(--white);
    font-weight: var(--font-weight-bold);
    cursor: pointer;
    background-color: var(--secondary-base);
}

input[type=submit]:hover {
    background-color: var(--secondary-tint);
}

input:focus, textarea:focus { 
    outline: none;
}

select:invalid {
    color: #7E7480;
    font-size: 1.5rem;
    font-weight: var(--font-weight-normal);
}

select [disabled] {
    color: var(--misc-grey);
    font-size: 1.5rem;
    font-weight: var(--font-weight-normal);
}
  
select option {
    color: var(--primary-base);
    font-size: 1.5rem;
    font-weight: var(--font-weight-normal);
}

/* ----------------------- LAYOUT ----------------------- */

/* ------ LAYOUT GRID ------ */

.layout {
    display: grid;
    grid-template-areas: "header" "content" "footer";
    grid-template-rows: var(--nav-height) 1fr var(--footer-height);
    height: 100vh;
}

.header {
    grid-area: header;
    height: var(--nav-height);
    background-color: var(--primary-base);
}

.content {
    grid-area: content;
    background-color: var(--primary-bg);
}

.footer {
    grid-area: footer;
    min-height: var(--footer-height);
    background-color: var(--primary-base);
}

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

    .footer {
        height: var(--footer-height-mob);
    }

}

/* ------ MOBILE NAV ------ */

.mobile-navbar {
    display:none;
    position: absolute;
    top: var(--nav-height);
    height: calc(100vh - var(--nav-height));
    background-color: var(--primary-base);
    width:100%;
    z-index:2;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.mobile-navbar.active {
    display: flex;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

.mobile-nav a {
    color: var(--white);
    font-size: 2rem;
    transition: all .2s ease-in;
}

.mobile-nav a.active {
    text-decoration: underline;
    text-underline-offset: 1rem;
    color: var(--secondary-base);
    
}

.mobile-nav a:hover {
    color: var(--secondary-base);
}

/* ------ NAVBAR ------ */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: min(var(--full-width), var(--max-content-width));
    margin: 0px auto;
    height: var(--nav-height);
}

.site-nav {
    display: flex;
    gap: 3.5rem;
}

.site-nav a {
    color: var(--white);
    font-size: var(--text-small);
    transition: all .2s ease-in;
}

.site-nav a.active {
    text-decoration: underline;
    text-underline-offset: 1rem;
    color: var(--secondary-base);
    
}

.site-nav a:hover {
    color: var(--secondary-base);
}

@media only screen and (max-width: 700px) {
    
    .site-nav {
        display: none;
    }

}

/* ------ NAV ICON ------ */

.nav-icon {
    display:none;
    width: 25px;
    cursor: pointer;
    transition: 0.3s;
    margin-right: 1rem;
}

.nav-icon div { 
    background-color: var(--white);
    content: '';
    height: 2px;
    margin: 0.5rem 0;
    transition: all .2s ease-in-out;
}

.nav-icon .a { 
    width: 70%;
}

.nav-icon .c {
    width: 80%;
}

.nav-icon.active .a {
    transform: translateY(7px) rotate(135deg);
    width: 100%;
}

.nav-icon.active .b {
    transform: scale(0);
}

.nav-icon.active .c {
    width: 100%;
    transform: translateY(-7px) rotate(-135deg);
}

.disable-scroll { 
     height: 100%; 
     overflow: hidden; 
}

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

    .nav-icon {
        display:block;
    }

}

/* ------ FOOTER CONTENT ------ */

.footer-content {
    height: var(--footer-height);
    width: min(var(--full-width), var(--max-content-width));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-social-logos {
    display: flex;
    gap: 1rem;
}

.footer-social-logos .fb-logo, .footer-social-logos .ig-logo {
    height: 30px;
    width: 30px;
}

.footer-social-logos .fb-logo .logo, .footer-social-logos .ig-logo .logo {
    fill: var(--primary-bg);
}

.footer-social-logos .fb-logo .bg, .footer-social-logos .ig-logo .bg {
    fill: var(--primary-base);
}

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

    .footer-content {
        height: var(--footer-height-mob);
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }

}

/* ----------------------- SECTIONS ----------------------- */

/* ------ HOME HERO ------ */

.home-hero-section {
    height: calc(100vh - var(--nav-height));
    background-color: var(--primary-bg);
    padding: 4rem 0;
    min-height: 500px; /*ADJUST THIS TO CONTENT*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url('../images/elements/splodge.webp');
    background-repeat: no-repeat;
    background-position: bottom left;
}

.home-hero-grid {
    display: grid;
    width: min(var(--max-content-width), var(--full-width));
    margin: 0 auto;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    justify-items: center;
}

.home-hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

p.home-hero-paragraph {
    font-size: 2.1rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.5rem;
}

.hero-btn-container {
    display: flex;
    gap: 2rem;
}

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

    .home-hero-section {
        background-image: none;
    }
    
    .home-hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-btn-container {
        justify-content: center;
    }

    p.home-hero-paragraph {
        text-align: center;
    }

}

/* ------ HOME SERVICES ------ */

.home-services-section {
    background-color: var(--primary-base);
}

.home-services {
    display: flex;
    width: min(var(--max-content-width), var(--full-width));
    margin: 0 auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 0;
}

.service-tiles {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin: 4rem 0;
}

.service-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background-color: var(--white);
    border-radius: 1rem;
    padding: 2rem;
}

.service-tile img {
    width: 100px;
}

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

    .service-tiles {
        grid-template-columns: 1fr;
    }

    .service-tile img {
        width: 80px;
    }

}

/* ------ HOME PORTFOLIO ------ */

.home-portfolio-section {
    background-color: var(--white);
}

.home-portfolio {
    display: flex;
    width: min(var(--max-content-width), var(--full-width));
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}

.recent-work-grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin: 4rem 0;
    align-content: center;
    justify-items: center;
}

.recent-project {
    background-position: center center;
    background-size: 100%;
    transition: background-size .5s;
    border-radius: 1rem;
}

.recent-project:hover {
    background-size: 110%;
}

.recent-project a {
    display:block;
}

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

    .recent-work-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

}

/* ------ HOME REVIEW SECTION ------ */

.reviews-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--primary-base);
    padding: 4rem 0;
}

.reviews {
    display: flex;
    flex-direction: row;
    width: min(1000px, var(--full-width));
    margin: 3rem auto;
    gap: 2rem;
}

.review {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border-radius: 2rem;
    flex: 1;
    background-image: url(../images/elements/quote-close.webp), url(../images/elements/quote-open.webp);
    background-repeat: no-repeat;
    background-position: bottom 6rem right 1rem, top 1rem left 1rem;
}

.review p {
    flex: 1;
    padding: 4rem 3rem 2rem 3rem;
}

.review-name {
    background-color: var(--secondary-base);
    border-radius: 0 0 2rem 2rem;
    height:50px;
    text-align: center;
    vertical-align: central;
    line-height: 50px;
    font-size: 1.4rem;
    color: var(--white);
    font-weight: var(--font-weight-bold);
}

.review-sites {
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

    .reviews {
        flex-direction: column;
    }

    .rv-secondary {
        display: none;
    }

}

/* ------ HOME ABOUT SECTION ------ */

.home-about-section {
    background-color: var(--white);
    padding: 6rem 0;
}

.home-about {
    display: grid;
    width: min(var(--full-width), var(--max-content-width));
    margin: 0 auto;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "jim text";
    align-items: center;
    justify-items: center;
    gap: 2rem;
}

.home-about-image {
    grid-area: jim;
    border-radius: 1rem;
}

.home-about-image img {
    border-radius: 1rem;
}

.home-about-content {
    display: flex;
    flex-direction: column;
    align-items: start;
    grid-area: text;
}

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

    .home-about {
        grid-template-columns: 1fr;
        grid-template-areas: "text" "jim";
    }

    .home-about-content {
        align-items: center;
    }

    .home-about-content p {
        text-align: center;
    }

}

/* ------ WORK SECTION ------ */

.work-section {
    width: min(var(--full-width), var(--max-content-width));
    margin: 3rem auto;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-items: center;
    margin-top: 3rem;
    margin-bottom: 6rem;
}

.project {
    background-position: center center;
    background-size: 100%;
    transition: background-size .5s;
    border-radius: 1rem;
}

.project:hover {
    background-size: 110%;
}

.project a {
    display:block;
}

/* ------ CONTACT SECTION ------ */

.contact-section {
    min-height: calc(100vh - var(--nav-height) - var(--footer-height));
    padding: 4rem 0;
    background-image: url('../images/elements/splodge.webp');
    background-repeat: no-repeat;
    background-position: bottom left;
}

.contact-us {
    display: grid;
    width: min(var(--max-content-width), var(--full-width));
    margin: 0 auto;
    gap: 4rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

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

    .contact-section {
        background-image: none;
    }
}

.contact-details {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 2rem;
    text-align: right;
}

.contact-social-logos {
    display: flex;
    gap: 1rem;
}

.contact-social-logos .fb-logo, .contact-social-logos .ig-logo {
    height: 30px;
    width: 30px;
}

.contact-social-logos .fb-logo .logo, .contact-social-logos .ig-logo .logo {
    fill: var(--primary-bg);
}

.contact-social-logos .fb-logo .bg, .contact-social-logos .ig-logo .bg {
    fill: var(--primary-base);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background-color: var(--white);
    border-radius: 1rem;
    padding: 2rem;
}

.sent-message {
    background-color: var(--white);
    border-radius: 1rem;
    padding: 2rem;
}

a.contact-link:hover {
    text-decoration: underline;
    text-underline-offset: 0.8rem;
    text-decoration-color: var(--secondary-base);
}

#confirm {
    display: none;
}

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

    .contact-details {
        align-items: center;
        text-align: center;
    }

    .sent-message {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

}

/* ------ QUOTE SECTION ------ */

.quote-section {
    min-height: calc(100vh - var(--nav-height) - var(--footer-height));
    padding: 4rem 0;
    background-image: url('../images/elements/splodge.webp');
    background-repeat: no-repeat;
    background-position: bottom left;
}

.get-quote {
    display: grid;
    width: min(var(--max-content-width), var(--full-width));
    margin: 0 auto;
    gap: 4rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

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

    .quote-section {
        background-image: none;
    }
}

.quote-details {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 0rem;
    text-align: right;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background-color: var(--white);
    border-radius: 1rem;
    padding: 2rem;
}

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

    .quote-details {
        align-items: center;
        text-align: center;
    }

}

/* ------ PROJECT PAGE ------ */

/* ------ PROJECT INTRO ------ */

.project-intro {
    display: grid;
    width: min(var(--full-width), var(--max-content-width));
    margin: 4rem auto;
    background-color: var(--white);
    border-radius: 1rem;
    padding: 4rem;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.project-description {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

a.project-back-link {
    margin-bottom: 1rem;
}

a.project-back-link:hover {
    text-decoration: underline;
    text-underline-offset: 0.8rem;
    text-decoration-color: var(--secondary-base);
}

.material-icons.back {
    vertical-align: middle;
    color: var(--secondary-base);
    font-size: 2rem;
    font-weight: var(--font-weight-normal);
}

p.project-type {
    color: var(--secondary-base);
    font-weight: var(--font-weight-bold);
}

.project-hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

    .project-intro {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

}

/* ------ CLIENT COMMENTS ------ */

.client-comments {
    background-color: var(--primary-base);
}

.client-comments .comments {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    width: min(var(--full-width), 900px);
    margin: 4rem auto;
    border-radius: 1rem;
    padding: 4rem;
    color: var(--white);
}

.reviewer {
    color: var(--secondary-base);
}

.stars {
    font-size: 1.8rem;
    vertical-align: middle;
}

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

    .avatar {
        display: none;
    }

}

/* ------ PROJECT IMAGES ------ */

.project-images {
    display: grid;
    width: min(var(--full-width), var(--max-content-width));
    margin: 4rem auto;
    background-color: var(--white);
    border-radius: 1rem;
    padding: 4rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

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

    .project-images {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

}

/* ------ SERVICES SECTION ------ */

.service {
    display: grid;
    width: min(var(--max-content-width), var(--full-width));
    margin: 4rem auto;
    background-color: var(--white);
    padding: 4rem;
    border-radius: 1rem;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    justify-items: center;
}

.graphic-design-hero-image {
    grid-column-start: 1;
    grid-row-start: 1;
}

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

    .service {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .graphic-design-hero-image {
        grid-row-start: 2;
    }

}

/* ------ WORK TOGETHER ------ */

.work-together {
    display: grid;
    width: min(var(--full-width), var(--max-content-width));
    margin: 4rem auto;
    background-color: var(--primary-base);
    padding: 4rem;
    grid-template-columns: 1fr 1fr;
    border-radius: 1rem;
    gap: 5rem;
}

.work-together-title {
    justify-items: end;
}

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

    .work-together {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .work-together-title {
        justify-items: start;
    }

}

/* ------ ERROR PAGE ------ */

.error-section {
    height: calc(100vh - var(--nav-height) - var(--footer-height));
    background-color: var(--primary-bg);
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url('../images/elements/splodge.webp');
    background-repeat: no-repeat;
    background-position: bottom left;
}

.error-grid {
    display: grid;
    width: min(var(--max-content-width), var(--full-width));
    margin: 0 auto;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    justify-items: center;
}

.error-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

p.error-paragraph {
    font-size: 2.1rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.5rem;
}

.error-btn-container {
    display: flex;
    gap: 2rem;
}

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

    .error-text h1 {
        text-align: center;
    }

    .error-section {
        background-image: none;
    }
    
    .error-grid {
        grid-template-columns: 1fr;
    }

    .error-btn-container {
        justify-content: center;
    }

    p.error-paragraph {
        text-align: center;
    }

}