@font-face {
    font-family: 'tiffany_gothic_ccregular';
    src: url('tiffanygothiccc-webfont.woff2') format('woff2'),
         url('tiffanygothiccc-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'iglesialight';
    src: url('iglesia-webfont.woff2') format('woff2'),
         url('iglesia-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary-color: #000000;
    --secondary-color: #404039;
    --background-color: #000000;
    --hover-color: #999999;
    --text-color: #ffffff;
    --border-color: #fff000;
    --font-family: 'tiffany_gothic_ccregular', Arial, sans-serif;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    background-color: var(--background-color);
    color: var(--text-color);
    min-height: 100vh;
}

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

/* navbar */
/*nav {*/
    /*background-color: var(--background-color);*/
    /*border-bottom: 1px solid var(--secondary-color);*/
/*}*/


nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--background-color);
    border-bottom: 1px solid var(--secondary-color);
    z-index: 10;
}

nav li {
    display: flex;
    align-items: center;
}

nav li img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
}

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

nav .home-li-image {
    margin-right: auto;
}

.home-logo {
    display: none;
}

nav .home-li {
    display: none;
}

nav a {
    display: flex;
    text-decoration: none;
    color: var(--text-color);
    padding: 1em 2em;
    transition: --background-color 150ms ease;
}

nav a:hover {
    background-color: var(--hover-color);
}

nav a.active-link {
    border-bottom: 2px solid var(--text-color);
}

#open-sidebar-button {
    display: none;
    background: none;
    border: none;
    padding: 1em;
    margin-left: auto;
    cursor: pointer;
}

#close-sidebar-button {
    display: none;
    background: none;
    border: none;
    padding: 1em;
    cursor: pointer;
}

#overlay {
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    inset: 0;
    z-index: 9;
    display: none;
}

nav.show ~ #overlay {
    display: block;
}
/* End of navbar */

/* Parallax header */
.header-content {
    height: 100vh;
    height: 100dvh; /* For better mobile support */
    overflow-y: auto;
    overflow-x: hidden;
    perspective: 10px;
}

header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    transform-style: preserve-3d;
    z-index: -1;
}

.background, .fog, .grass {
    position: absolute;
    height: 100%;
    width: 100vw;
    object-fit: cover;
    z-index: -1;
}

.background {
    position: absolute;
    top: -10%;
    transform: translateZ(-10px) scale(2);
}

.grimlock {
    height: 1350px;
    width: auto;
    position: absolute;
    bottom: -65%;
    right: -12%;
    transform: translateZ(-8px) scale(1.8);
}

.kova {
    height: 1200px;
    width: auto;
    position: absolute;
    bottom: -50%;
    left: -25%;
    transform: translateZ(-8px) scale(1.8) rotate(-15deg);
}

.fog {
    position: absolute;
    transform: translateZ(-5px) scale(1.5);
    opacity: 0.7;
}

.grass {
    position: absolute;
    bottom: -5%;
    transform: translateZ(-1px) scale(1.1);
}

.titleContainer {
    position: absolute;
    top: 25%;
    height: auto;
}

.title {
    font-family: 'iglesialight', Arial, sans-serif;
    font-size: 8em;
    text-align: center;
    margin: 0;
    text-shadow: 0 0 10px black;
}

.subTitle {
    font-size: 2.3em;
    text-align: center;
    margin-top: -20px;
    text-shadow: 0 0 5px black;

}

.content-container {
    height: 200vh;
    background-color: var(--background-color);
}

/* End of Parallax header */
.pairingTitle {
    text-align: center;
    font-size: 6em;
    margin-top: 40px;
    color: var(--text-color);
    text-shadow: 2px 2px 8px rgba(240, 240, 240, 0.5);
    font-family: 'iglesialight', Arial, sans-serif;
}

.pairing-container {
    position: relative;
    width: 80%;
    height: 500px;
    margin: 40px auto 80px auto;
    box-shadow: 12px 12px 20px rgba(255, 255, 255, 0.5);
}

.pairing-img-container {
    position: relative;
    float: left;
    top: 0;
    left: 0;
    width: 50%;
    height: 500px;
    background: var(--secondary-color);
    margin: 0;
    padding: 0;
}

.pairing-img-container img {
    height: 100%;
    width: 100%;
    object-fit: fill;
}

.pairing-text {
    position: relative;
    float: right;
    height: 500px;
    width: 50%;
    background: white;
    padding: 20px;

}

.pairing-text h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: black;
    text-shadow: 1px 1px 2px grey;
    text-align: center;
}

.pairing-text p {
    font-size: 1.2em;
    line-height: 1.4;
    color: black;
}

.pairing-text h3 {
    font-size: 1.5em;
    margin-top: 20px;
    color: grey;
    text-align: center;
}

.puppy-button {
    display: block;
    width: 200px;
    height: 50px;
    margin: 10px auto;
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    text-decoration: none;
    text-align: center;
    padding: 10px 20px;
}
/* End of Pairing Section */

/* Pedigree Section */

.pedigreeTitle {
    text-align: center;
    font-size: 6em;
    margin-top: 80px;
    color: var(--text-color);
    text-shadow: 2px 2px 8px rgba(240, 240, 240, 0.5);
    font-family: 'iglesialight', Arial, sans-serif;
}

.pedigree-container {
    position: relative;
    width: 60%;
    margin: 40px auto;
}

.pedigree-container h2 {
    margin-right: 5px;
}

.pedigree-container h2, .pedigree-container p {
    display: inline;
    vertical-align: bottom;
}

/* Kova Pedigree */
.kova-pedigree-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}

.kova-pedigree-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto 40px auto;
}

.kova-pedigree-container h1 {
    font-size: 2.5em;
}

.kova-pedigree-container img {
    border: 4px outset var(--hover-color);
}

.kova-puppy-container {
    position: relative;
    text-align: center;
}

.kova-puppy-container h3 {
    position: absolute;
    top: 10px;
    right: 16px;
}

.kova-puppy-image {
    border: 4px outset var(--hover-color);
}

.kova-pedigree-text {
    width: 60%;
    margin-top: 40px;
}

/* Grimlock Pedigree */
.grimlock-pedigree-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
}

.grimlock-pedigree-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto 40px auto;
}

.grimlock-pedigree-container h1 {
    font-size: 2.5em;
}

.grimlock-pedigree-container img {
    border: 4px outset var(--hover-color);
}

.grim-puppy-container {
    position: relative;
    text-align: center;
}

.grim-puppy-container h3 {
    position: absolute;
    top: 10px;
    left: 16px;
}

.grimlock-puppy-image {
    border: 4px outset var(--hover-color);
}

.grimlock-pedigree-text {
    width: 60%;
    margin-top: 40px;
}
/* end of Pedigree Section */

/* About Section */
.aboutTitle {
    text-align: center;
    font-size: 6em;
    margin-top: 80px;
    color: var(--text-color);
    text-shadow: 2px 2px 8px rgba(240, 240, 240, 0.5);
    font-family: 'iglesialight', Arial, sans-serif;
}

.about {
    width: 60%;
    position: relative;
    margin: 40px auto;
    background-color: var(--hover-color);
    border: 4px outset var(--hover-color);
    box-shadow: 12px 12px 20px rgba(255, 255, 255, 0.5);
}

.about-image {
    width: 100%;
    height: auto;
}
.about p {
    color: black;
    background-color: var(--hover-color);
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 1.3em;
    padding: 20px;

}

.reminder-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    column-gap: 20px;
    position: relative;
    margin: 40px auto;
    width: 60%;
}

.reminder {
    /*float: left;*/
    /*width: 70%;*/
    text-align: left;
    font-size: 1.2em;
    color: var(--text-color);
    text-shadow: 1px 1px 2px grey;
}

.contact-button {
    /*float: right;*/
    /*width: 200px;*/
    height: 50px;
    background-color: var(--hover-color);
    color: black;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    padding: 10px 20px;
    text-align: center;
}

/*.clearfix:after {*/
  /*content:"";*/
  /*display:block;*/
  /*clear:both;*/
 /*}*/

/* end of About Section */
.shim {
    height: 200px;
}

/* Puppies Section */
.puppiesTitle {
    text-align: center;
    font-size: 6em;
    margin: 120px auto 40px auto;
    color: var(--text-color);
    text-shadow: 2px 2px 8px rgba(240, 240, 240, 0.5);
    font-family: 'iglesialight', Arial, sans-serif;
}

.priceContainer {
    position: relative;
    width: 400px;
    height: auto;
    margin: 40px auto;
    background-color: white;
    border: 4px outset var(--hover-color);
    box-shadow: 12px 12px 20px rgba(255, 255, 255, 0.5);

    text-align: center;
    text-shadow: 2px 3px 3px grey;
    color: black;
    padding: 20px;
}

.priceContainer h2 {
    font-size: 2.5em;
}

.priceContainer p {
    font-size: 1.1em;
}

.imageWrapper {
    margin: 20px auto;
    text-align: center;
}

.contactButtonWrapper {
    text-align: center;
    margin: 20px auto 40px auto;
}


.contactButton {
    width: 200px;
    height: 50px;
    background-color: var(--hover-color);
    color: black;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    padding: 10px 20px;
    text-align: center;
}


/* Media Queries */
/* Second largest screen size around 1200px */
@media screen and (max-width: 1200px) {
    .titleContainer {
        top: 20%;
    }

    .title {
        font-size: 6em;
    }

    .subTitle {
        font-size: 1.8em;
    }

    .grimlock {
        height: 1200px;
        right: -10%;
    }

    .kova {
        height: 1000px;
        left: -20%;
    }


    /* Pairing Section */
    .pairingTitle {
        text-align: center;
        font-size: 6em;
        margin-top: 40px;
        color: var(--text-color);
        text-shadow: 2px 2px 8px rgba(240, 240, 240, 0.5);
        font-family: 'iglesialight', Arial, sans-serif;
    }

    .pairing-container {
        position: relative;
        width: 80%;
        height: 500px;
        margin: 40px auto 80px auto;
        box-shadow: 12px 12px 20px rgba(255, 255, 255, 0.5);
    }

    .pairing-img-container {
        position: relative;
        float: left;
        top: 0;
        left: 0;
        width: 50%;
        height: 500px;
        background: var(--secondary-color);
        margin: 0;
        padding: 0;
    }

    .pairing-img-container img {
        height: 100%;
        width: 100%;
        object-fit: fill;
    }

    .pairing-text {
        position: relative;
        float: right;
        height: 500px;
        width: 50%;
        background: white;
        padding: 20px;

    }

    .pairing-text h2 {
        font-size: 2.3em;
        margin-bottom: 20px;
        color: black;
        text-shadow: 1px 1px 2px grey;
        text-align: center;
    }

    .pairing-text p {
        font-size: 1.0em;
        line-height: 1.4;
        color: black;
    }

    .pairing-text h3 {
        font-size: 1.3em;
        margin-top: 20px;
        color: grey;
        text-align: center;
    }

    .puppy-button {
        display: block;
        width: 200px;
        height: 50px;
        margin: 10px auto;
        background-color: var(--primary-color);
        color: var(--text-color);
        border: none;
        border-radius: 5px;
        font-size: 1.2em;
        text-decoration: none;
        text-align: center;
        padding: 10px 20px;
    }
    /* End of Pairing Section */
    .reminder-wrapper {
        width: 70%;
    }
}

@media screen and (max-width: 943px) {
    .titleContainer {
        top: 15%;
    }

    .title {
        font-size: 6em;
    }

    .subTitle {
        font-size: 1.8em;
    }

    .grimlock {
        height: 1100px;
        right: -15%;
    }

    .kova {
        height: 900px;
        left: -30%;
    }

    .fog {
        bottom: -5%
    }

    .grass {
        bottom: -8%;
    }


    /* Pairing Section */
    .pairingTitle {
        text-align: center;
        font-size: 4em;
        margin-top: 40px;
        color: var(--text-color);
        text-shadow: 2px 2px 8px rgba(240, 240, 240, 0.5);
        font-family: 'iglesialight', Arial, sans-serif;
    }

    .pairing-container {
        position: relative;
        width: 80%;
        height: auto;
        margin: 40px auto 80px auto;
        box-shadow: 12px 12px 20px rgba(255, 255, 255, 0.5);
    }

    .pairing-img-container {
        position: relative;
        float: none;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        background: var(--secondary-color);
        margin: 0;
        padding: 0;
    }

    .pairing-img-container img {
        height: 100%;
        width: 100%;
        object-fit: fill;
    }

    .pairing-text {
        position: relative;
        float: none;
        height: auto;
        width: 100%;
        background: white;
        padding: 20px;

    }

    .pairing-text h2 {
        font-size: 2.3em;
        margin-bottom: 20px;
        color: black;
        text-shadow: 1px 1px 2px grey;
        text-align: center;
    }

    .pairing-text p {
        font-size: 1.0em;
        line-height: 1.4;
        color: black;
    }

    .pairing-text h3 {
        font-size: 1.3em;
        margin-top: 20px;
        color: grey;
        text-align: center;
    }

    .puppy-button {
        display: block;
        width: 200px;
        height: 50px;
        margin: 10px auto;
        background-color: var(--primary-color);
        color: var(--text-color);
        border: none;
        border-radius: 5px;
        font-size: 1.2em;
        text-decoration: none;
        text-align: center;
        padding: 10px 20px;
    }
    /* End of Pairing Section */


    .pedigreeTitle {
        text-align: center;
        font-size: 5em;
        margin-top: 80px;
        color: var(--text-color);
        text-shadow: 2px 2px 8px rgba(240, 240, 240, 0.5);
        font-family: 'iglesialight', Arial, sans-serif;
    }

    .kova-pedigree-container h1 {
        font-size: 2.0em;
    }

    .grimlock-pedigree-container h1 {
        font-size: 2.0em;
    }

    .aboutTitle {
        font-size: 5em;
    }


    .about p {
        font-size: 1em;
    }

    .reminder-wrapper {
        display: grid;
        grid-template-column: 2fr 1fr;
        column-gap: 20px;
        position: relative;
        margin: 40px auto;
        width: 70%;
    }

    .reminder {
        /*float: left;*/
        /*width: 70%;*/
        text-align: left;
        font-size: 1em;
        color: var(--text-color);
        text-shadow: 1px 1px 2px grey;
    }

    .contact-button {
        /*float: right;*/
        /*width: 140px;*/
        height: 45px;
        background-color: var(--hover-color);
        color: black;
        text-decoration: none;
        border: none;
        border-radius: 5px;
        font-size: 1.1em;
        padding: auto 10px;
        text-align: center;
    }

    .clearfix:after {
      content:"";
      display:block;
      clear:both;
     }
     
     .puppiesTitle {
         font-size: 5em;
     }

}

@media screen and (max-width: 791px) {
    .titleContainer {
        top: 15%;
    }

    .title {
        font-size: 6em;
    }

    .subTitle {
        font-size: 1.8em;
    }

    .grimlock {
        height: 1100px;
        right: -30%;
    }

    .kova {
        height: 900px;
        left: -45%;
    }

    .fog {
        bottom: -5%
    }

    .grass {
        bottom: -8%;
    }

    /* Pedigree Section */

    .pedigreeTitle {
        text-align: center;
        font-size: 4em;
        margin-top: 80px;
        color: var(--text-color);
        text-shadow: 2px 2px 8px rgba(240, 240, 240, 0.5);
        font-family: 'iglesialight', Arial, sans-serif;
    }

    .pedigree-container {
        position: relative;
        width: 60%;
        margin: 40px auto;
    }

    .pedigree-container h2 {
        margin-right: 5px;
    }

    .pedigree-container h2, .pedigree-container p {
        display: inline;
        vertical-align: bottom;
    }

    /* Kova Pedigree */
    .kova-pedigree-section {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 60px;
    }

    .kova-pedigree-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0 auto 40px auto;
    }

    .kova-pedigree-container h1 {
        font-size: 1.8em;
    }

    .kova-pedigree-container img {
        border: 4px outset var(--hover-color);
    }

    .kova-puppy-image {
        border: 4px outset var(--hover-color);
    }

    .kova-pedigree-text {
        width: 60%;
        margin-top: 40px;
    }

    /* Grimlock Pedigree */
    .grimlock-pedigree-section {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 80px;
    }

    .grimlock-pedigree-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0 auto 40px auto;
    }

    .grimlock-pedigree-container h1 {
        font-size: 1.8em;
    }

    .grimlock-pedigree-container img {
        border: 4px outset var(--hover-color);
    }

    .grimlock-puppy-image {
        border: 4px outset var(--hover-color);
    }

    .grimlock-pedigree-text {
        width: 60%;
        margin-top: 40px;
    }
    /* end of Pedigree Section */

    .aboutTitle {
        font-size: 4em;
    }

    .about p {
        position: relative;
    }


    .reminder-wrapper {
        display: grid;
        grid-template-columns: 2fr 1fr;
        column-gap: 20px;
        position: relative;
        margin: 40px auto;
        width: 60%;
    }

    .reminder {
        /*float: left;*/
        /*width: 72%;*/
        text-align: left;
        font-size: 0.9em;
        color: var(--text-color);
        text-shadow: 1px 1px 2px grey;
    }

    .contact-button {
        /*float: right;*/
        /*width: 110px;*/
        height: 40px;
        background-color: var(--hover-color);
        color: black;
        text-decoration: none;
        border: none;
        border-radius: 5px;
        font-size: 0.9em;
        padding: auto 10px;
    }

    .clearfix:after {
      content:"";
      display:block;
      clear:both;
     }

}

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

    .home-logo {
        display: block;
        position: fixed;
        height: 50px;
        width: 50px;
        border-radius: 50%;
        top: 0;
        left: 0;
        z-index: 10;
        margin-top: 1em;
        margin-left: 1em;
    }

    #open-sidebar-button, #close-sidebar-button {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        left: unset;
        height: 100vh;
        width: min(15em, 100%);
        z-index: 10;
        border-left: 1px solid var(--hover-color);
        transition: right 300ms ease-out;
    }

    button#open-sidebar-button {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 9;
    }

    nav .home-li-image {
        display: none;
    }

    nav .home-li {
        display: flex;
        margin-right: unset;
    }

    nav.show {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
    }

    nav a {
        width: 100%;
        padding-left: 2.5em;
    }

    nav a.active-link {
        border-bottom: none;
    }

    .about {
        width: 80%;
    }

    .about p {
        font-size: 0.9em;
        padding: 10px;
    }


    .reminder-wrapper {
        display: grid;
        grid-template-columns: 2fr 1fr;
        column-gap: 20px;
        position: relative;
        margin: 40px auto;
        width: 70%;
    }

    .reminder {
        /*float: left;*/
        /*width: 75%;*/
        text-align: left;
        font-size: 0.9em;
        color: var(--text-color);
        text-shadow: 1px 1px 2px grey;
    }

    .contact-button {
        /*float: right;*/
        /*width: 100px;*/
        height: 40px;
        background-color: var(--hover-color);
        color: black;
        text-decoration: none;
        border: none;
        border-radius: 5px;
        font-size: 0.8em;
    }

    .clearfix:after {
      content:"";
      display:block;
      clear:both;
    }

}

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

    .background {
        top: -20%;
    }

    .titleContainer {
        top: 15%;
    }

    .title {
        font-size: 6em;
    }

    .subTitle {
        font-size: 1.8em;
    }

    .grimlock {
        height: 1100px;
        right: -45%;
    }

    .kova {
        height: 900px;
        left: -60%;
    }

    .fog {
        bottom: -20%
    }

    .grass {
        bottom: -8%;
    }


    /* Pairing Section */
    .pairingTitle {
        text-align: center;
        font-size: 3em;
        margin-top: 40px;
        color: var(--text-color);
        text-shadow: 2px 2px 8px rgba(240, 240, 240, 0.5);
        font-family: 'iglesialight', Arial, sans-serif;
    }


    .pairing-container {
        position: relative;
        width: 70%;
        height: auto;
        margin: 40px auto 80px auto;
        box-shadow: 12px 12px 20px rgba(255, 255, 255, 0.5);
    }


    .pairing-text p {
        font-size: 0.9em;
        line-height: 1.4;
        color: black;
    }


    /* Pedigree Section */

    .pedigreeTitle {
        text-align: center;
        font-size: 3.9em;
        margin-top: 80px;
        color: var(--text-color);
        text-shadow: 2px 2px 8px rgba(240, 240, 240, 0.5);
        font-family: 'iglesialight', Arial, sans-serif;
    }

    .pedigree-container {
        position: relative;
        width: 60%;
        margin: 40px auto;
    }

    .pedigree-container h2 {
        margin-right: 5px;
        font-size: 1.4em;
    }

    .pedigree-container p {
        font-size: 0.8em;
    }

    .pedigree-container h2, .pedigree-container p {
        display: inline;
        vertical-align: bottom;
    }

    /* Kova Pedigree */
    .kova-pedigree-section {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 60px;
    }

    .kova-pedigree-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0 auto 40px auto;
    }

    .kova-pedigree-container h1 {
        font-size: 1.3em;
    }

    .kova-pedigree-container img {
        border: 4px outset var(--hover-color);
    }

    .kova-puppy-image {
        border: 4px outset var(--hover-color);
    }

    .kova-pedigree-text {
        width: 60%;
        margin-top: 40px;
        font-size: 0.8em;
    }

    /* Grimlock Pedigree */
    .grimlock-pedigree-section {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 80px;
    }

    .grimlock-pedigree-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0 auto 40px auto;
    }

    .grimlock-pedigree-container h1 {
        font-size: 1.3em;
    }

    .grimlock-pedigree-container img {
        border: 4px outset var(--hover-color);
    }

    .grimlock-puppy-image {
        border: 4px outset var(--hover-color);
    }

    .grimlock-pedigree-text {
        width: 60%;
        margin-top: 40px;
        font-size: 0.8em;
    }
    /* end of Pedigree Section */

    .aboutTitle {
        font-size: 3.9em;
    }


    .reminder-wrapper {
        display: grid;
        grid-template-columns: 2fr 1fr;
        position: relative;
        margin: 40px auto;
        width: 80%;
    }

    .reminder {
        /*float: left;*/
        /*width: 75%;*/
        text-align: left;
        font-size: 0.8em;
        color: var(--text-color);
        text-shadow: 1px 1px 2px grey;
    }

    .contact-button {
        /*float: right;*/
        /*width: auto;*/
        height: 35px;
        background-color: var(--hover-color);
        color: black;
        text-decoration: none;
        border: none;
        border-radius: 5px;
        font-size: 0.7em;
    }

    .clearfix:after {
      content:"";
      display:block;
      clear:both;
    }
}


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

    .background {
        top: -20%;
    }

    .titleContainer {
        top: 15%;
    }

    .title {
        font-size: 6em;
    }

    .subTitle {
        font-size: 1.8em;
    }

    .grimlock {
        height: 1100px;
        right: -60%;
    }

    .kova {
        height: 900px;
        left: -75%;
    }

    .fog {
        bottom: -20%
    }

    .grass {
        bottom: -8%;
    }


    .pedigreeTitle {
        text-align: center;
        font-size: 3.7em;
        margin-top: 80px;
        color: var(--text-color);
        text-shadow: 2px 2px 8px rgba(240, 240, 240, 0.5);
        font-family: 'iglesialight', Arial, sans-serif;
    }

    .aboutTitle {
        font-size: 3.7em;
    }
}


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

    .background {
        top: -20%;
    }

    .titleContainer {
        top: 10%;
    }

    .title {
        font-size: 6em;
    }

    .subTitle {
        font-size: 1.8em;
    }

    .grimlock {
        height: 1100px;
        right: -75%;
    }

    .kova {
        height: 900px;
        left: -85%;
    }

    .fog {
        bottom: -30%;
        height: 130%;
    }

    .grass {
        bottom: -8%;
    }


    .pairingTitle {
        text-align: center;
        font-size: 2.3em;
        margin-top: 40px;
        color: var(--text-color);
        text-shadow: 2px 2px 8px rgba(240, 240, 240, 0.5);
        font-family: 'iglesialight', Arial, sans-serif;
    }


    .pairing-container {
        position: relative;
        width: 70%;
        height: auto;
        margin: 40px auto 80px auto;
        box-shadow: 12px 12px 20px rgba(255, 255, 255, 0.5);
    }

    .pairing-text h2 {
        font-size: 1.8em;
        margin-bottom: 20px;
        color: black;
        text-shadow: 1px 1px 2px grey;
        text-align: center;
    }

    .pairing-text p {
        font-size: 0.8em;
        line-height: 1.2;
        color: black;
    }

    .pairing-text h3 {
        font-size: 1.0em;
        margin-top: 10px;
        color: grey;
        text-align: center;
    }


    .puppy-button {
        display: block;
        width: 150px;
        height: 40px;
        margin: 10px auto;
        background-color: var(--primary-color);
        color: var(--text-color);
        border: none;
        border-radius: 5px;
        font-size: 0.8em;
        text-decoration: none;
        text-align: center;
        padding: 10px 20px;
    }

    .pedigreeTitle {
        font-size: 3em;
    }

    .pedigree-container h2 {
        font-size: 1.2em;
    }

    .aboutTitle {
        font-size: 3em;
    }

    .about p {
        font-size: 0.9em;
    }


    .reminder-wrapper {
        display: grid;
        grid-template-columns: 2fr 1fr;
        column-gap: 20px;
        position: relative;
        margin: 40px auto;
        width: 80%;
    }

    .reminder {
        /*float: left;*/
        /*width: auto;*/
        text-align: left;
        font-size: 0.8em;
        color: var(--text-color);
        text-shadow: 1px 1px 2px grey;
    }

    .contact-button {
        /*float: right;*/
        margin: 20px auto;
        width: auto;
        height: 35px;
        background-color: var(--hover-color);
        color: black;
        text-decoration: none;
        border: none;
        border-radius: 5px;
        font-size: 0.7em;
    }

    .clearfix:after {
      content:"";
      display:block;
      clear:both;
    }
    
    .puppiesTitle {
        font-size: 3.5em;
        margin-top: 80px;
    }

    .priceContainer {
        width: 80%;
    }
}


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


    .background {
        top: -20%;
    }

    .titleContainer {
        top: 10%;
    }

    .title {
        font-size: 6em;
    }

    .subTitle {
        font-size: 1.8em;
    }

    .grimlock {
        height: 1100px;
        right: -100%;
    }

    .kova {
        height: 900px;
        left: -110%;
    }

    .fog {
        bottom: -30%
    }

    .grass {
        bottom: -10%;
    }


    .pairingTitle {
        text-align: center;
        font-size: 2.3em;
        margin-top: 40px;
        color: var(--text-color);
        text-shadow: 2px 2px 8px rgba(240, 240, 240, 0.5);
        font-family: 'iglesialight', Arial, sans-serif;
    }

    
    .pairingTitle {
        text-align: center;
        font-size: 2.3em;
        margin-top: 40px;
        color: var(--text-color);
        text-shadow: 2px 2px 8px rgba(240, 240, 240, 0.5);
        font-family: 'iglesialight', Arial, sans-serif;
    }


    .pairing-container {
        position: relative;
        width: 70%;
        height: auto;
        margin: 40px auto 80px auto;
        box-shadow: 12px 12px 20px rgba(255, 255, 255, 0.5);
    }

    .pairing-text h2 {
        font-size: 1.8em;
        margin-bottom: 20px;
        color: black;
        text-shadow: 1px 1px 2px grey;
        text-align: center;
    }

    .pairing-text p {
        font-size: 0.7em;
        line-height: 1.3;
        color: black;
    }

    .pairing-text h3 {
        font-size: 1.2em;
        margin-top: 20px;
        color: grey;
        text-align: center;
    }


    .puppy-button {
        display: block;
        width: 150px;
        height: 40px;
        margin: 10px auto;
        background-color: var(--primary-color);
        color: var(--text-color);
        border: none;
        border-radius: 5px;
        font-size: 0.8em;
        text-decoration: none;
        text-align: center;
        padding: 10px 20px;
    }

    .kova-pedigree-container h1 {
        font-size: 1.2em;
    }

    .grimlock-pedigree-container h1 {
        font-size: 1.1em;
    }

    .about p {
        font-size: 0.8em;
    }
}


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

    .background {
        top: -20%;
    }

    .titleContainer {
        top: 15%;
    }

    .title {
        font-size: 5em;
    }

    .subTitle {
        font-size: 1.6em;
    }

    .grimlock {
        height: 1000px;
        right: -100%;
    }

    .kova {
        height: 800px;
        left: -110%;
    }

    .fog {
        bottom: -30%
    }

    .grass {
        bottom: -10%;
    }


    .pairingTitle {
        text-align: center;
        font-size: 2.1em;
        margin-top: 40px;
        color: var(--text-color);
        text-shadow: 2px 2px 8px rgba(240, 240, 240, 0.5);
        font-family: 'iglesialight', Arial, sans-serif;
    }


    .pairing-container {
        position: relative;
        width: 70%;
        height: auto;
        margin: 40px auto 80px auto;
        box-shadow: 12px 12px 20px rgba(255, 255, 255, 0.5);
    }

    .pairing-text h2 {
        font-size: 1.5em;
        margin-bottom: 20px;
        color: black;
        text-shadow: 1px 1px 2px grey;
        text-align: center;
    }

    .pairing-text p {
        font-size: 0.7em;
        line-height: 1.1;
        color: black;
    }

    .pairing-text h3 {
        font-size: 0.8em;
        margin-top: 10px;
        color: grey;
        text-align: center;
    }


    .puppy-button {
        display: block;
        width: 100px;
        height: 20px;
        margin: 8px auto;
        background-color: var(--primary-color);
        color: var(--text-color);
        border: none;
        border-radius: 5px;
        font-size: 0.7em;
        text-decoration: none;
        text-align: center;
        padding: 6px 8px;
    }
    
    .puppiesTitle {
        font-size: 2.5em;
    }

}

