/* CSS reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Allowing percentage-based heights in the site
and adding smooth scrolling */
html,
body {
    height: 100%;
    scroll-behavior: smooth;
}

/* CSS relating to skrollr library */
.skrollable {
    position: fixed;
    z-index: 100;
}

.skrollr-mobile .skrollable {
    position: absolute;
}

.skrollable .skrollable {
    position: absolute;
}

.skrollable .skrollable .skrollable {
    position: static;
}

/* FONT REFERENCES */
/* ARBOTEK ULTRA VALUES FOR REFERENCE
font-family: arbotek, sans-serif;
font-weight: 900;
font-style: normal; 
*/

/* ARBOTEK THIN VALUE FOR REFERENCE
font-family: arbotek, sans-serif;
font-weight: 100;
font-style: normal; 
*/

/* ARBOTEK LIGHT VALUE FOR REFERENCE
font-family: arbotek, sans-serif;
font-weight: 300;
font-style: normal;
*/

/*FINAL SIX MEDIUM FOR REFERENCE
font-family: finalsix, sans-serif;
font-weight: 500;
font-style: normal;*/

/* FINAL SIX LIGHT FOR REFERENCE
font-family: finalsix, sans-serif;
font-weight: 300;
font-style: normal*/

section {
    background-color: #9DB6A4;
}

/* Setting up space for the skrollr animation */
.section-animation {
    height: 11000px;
}

/* Parallax */
.layer3 {
    width: 100%;
    height: 8rem;
    text-align: center;
    margin: 0 auto;
}

/* In order to make the grass move */
.layer3 img {
    animation: skew-grass 2s infinite;
    animation-direction: alternate;
    margin-top: 10%;
    position: absolute;
    top: 0;
    left: 0;
}

#grass {
    object-fit: cover;
}

/* In order to make the flowers move */
.layer2 img {
    animation: skew-flowers 3s infinite;
    animation-direction: alternate;
    margin-top: 3%;
    position: absolute;
    top: 0;
    left: 0;
}

.layer1 {
    position: absolute;
    margin-top: 8em;
    margin-left: 20%;
    top: 0;
    left: 0;
}

.parallax {
    height: 65rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    margin-left: auto;
    margin-right: auto;
}

@keyframes skew-grass {
    0% {
        transform: skewX(3deg) translate(-5px);
    }

    100% {
        transform: skewX(-7deg) translate(5px);
    }
}

@keyframes skew-flowers {
    0% {
        transform: skewX(3deg) translate(-3px);
    }

    100% {
        transform: skewX(-3deg) translate(3px);
    }
}

/* parallax */

body {
    min-height: 1500px;
}

.parallax {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    text-align: center;
}

.parallax:before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    z-index: 10000;
}

.parallax:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 10000;
    mix-blend-mode: color;
}

.parallax img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

#bg {
    object-fit: cover;
}

#city {
    height: unset;
}

/* Styling the REWILD AARHUS heading */
#text1 {
    position: relative;
    color: #56351E;
    font-size: 10em;
    z-index: 1;
    font-family: arbotek, sans-serif;
    font-weight: 900;
    font-style: normal;
    margin-top: 9rem;
}

#text2 {
    position: relative;
    color: #56351E;
    font-size: 5em;
    z-index: 1;
    font-family: arbotek, sans-serif;
    font-weight: 900;
    font-style: normal;
    margin-top: -3rem;
    margin-left: 16rem;
}

#grass {
    z-index: 3;
    object-fit: cover;
    margin-top: 3rem;
    width: 110%;
}

#flowers {
    z-index: 2;
    height: unset;
}

#city {
    margin-top: 2rem;
}

/* Styling bees */
.bee {
    width: 2rem;
    height: auto;
    z-index: 10;
}

/* Making bees interactive when hovering */
.bee:hover {
    animation: shake 0.6s;
}

@keyframes shake {
    0% {
        transform: translate(1px, 1px) rotate(0deg);
    }

    10% {
        transform: translate(-1px, -2px) rotate(-1deg);
    }

    20% {
        transform: translate(-3px, 0px) rotate(1deg);
    }

    30% {
        transform: translate(3px, 2px) rotate(0deg);
    }

    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }

    50% {
        transform: translate(-1px, 2px) rotate(-1deg);
    }

    60% {
        transform: translate(-3px, 1px) rotate(0deg);
    }

    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }

    80% {
        transform: translate(-1px, -1px) rotate(1deg);
    }

    90% {
        transform: translate(1px, 2px) rotate(0deg);
    }

    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}

#bee1 {
    position: absolute;
    left: 4%;
    top: 3%;
}

#bee2 {
    position: absolute;
    left: 20%;
    top: 30%;
}

#bee3 {
    position: absolute;
    left: 40%;
    top: 6%;
    transform: rotate(-20deg);
    transform: rotate(-40deg);
}

#bee4 {
    position: absolute;
    left: 60%;
    top: 20%;
}

#bee5 {
    position: absolute;
    left: 75%;
    top: 3%;
}

#bee6 {
    position: absolute;
    left: 97%;
    top: 23%;
    transform: rotate(20deg);
}

/* Bugs in grass */
.bug {
    width: 2rem;
    z-index: 10;
}

/* Making bugs interactive when hovering */
.bug:hover {
    animation: shake 0.6s;
}

#bug1 {
    position: absolute;
    left: 2%;
    top: 88%;
}

#bug2 {
    position: absolute;
    left: 15%;
    top: 77%;
    transform: rotate(-50deg);
}

#bug3 {
    position: absolute;
    left: 34%;
    top: 94%;
}

#bug4 {
    position: absolute;
    left: 64%;
    top: 76%;
    transform: rotate(-60deg);
}

#bug5 {
    position: absolute;
    left: 83%;
    top: 90%;
}

#bug6 {
    position: absolute;
    left: 96%;
    top: 70%;
}

/* Dig deeper button */
.dig-deeper {
    color: #F0F757;
    position: absolute;
    left: 47%;
    bottom: 20%;
    text-decoration: none;
    z-index: 10;
    font-family: 'arbotek', sans-serif;
    font-size: 1.6em;
    font-weight: 900;

}

.shovel {
    position: absolute;
    left: 48.5%;
    bottom: 8%;
    width: 4rem;
    z-index: 10;
}

/* Activating the "dig deep" button when clicking */
.scroll-down {
    height: 50px;
    width: 30px;
    position: absolute;
    left: 47%;
    bottom: 20px;
    cursor: pointer;
    transform: rotate(38deg);
    z-index: 10001;
}

.scroll-down::before,
.scroll-down::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 48%;
    border: 2px solid #F0F757;
    height: 20px;
    width: 20px;
    transform: translate(-50%, -50%) rotate(45deg);
    border-top: transparent;
    border-left: transparent;
    animation: scroll-down 2.5s ease-in-out infinite;
}

.scroll-down::after {
    top: 30%;
    animation-delay: 3s;
}

@keyframes scroll-down {
    0% {
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    60% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        top: 90%
    }
}

/* Making a bee out of the cursor when starting to scroll down */
#cursor-change {
    cursor: url('images/cursor.png'), url('images/cursor.svg'), auto;
}

/* Styling all the copy of the WebDoc  */
.copy {
    font-family: 'finalsix', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1.3em;
    color: #56351E;
    padding-top: 1em;
    margin-left: 25%;
    margin-right: 25%;
    line-height: 1.4;
}

.copy-heading{
    font-family: 'finalsix', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 2.2em;
    color: #56351E;
    padding-top: 3em;
    margin-left: 25%;
    margin-right: 25%;
    line-height: 1.4;
}

/* Styling video */
.video {
    margin-left: 20%;
    width: 60%;
    height: 60%;
    z-index: 1000;
}

/* Styling footer */
.footer_container {
    position: relative;
    bottom: 0;
}

/* Reach out to us text */
.footer_title {
    font-family: 'finalsix', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 4rem;
    color: #56351E;
    position: absolute;
    margin-top: 1%;
    z-index: 10;
    left: 32%;
}

/* Background image of the footer */
.hands {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    height: auto;
}

/* SoMe icons */
.icons_container {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    margin-left: 42%;
    margin-bottom: 3rem;
}

/* SoMe icon inserted using Font Awesome */
.fa-facebook {
    background: transparent;
    color: #F0F757;
}

/* Facebook hover */
.fa-facebook:hover {
    transform: scale(1.1);
}

/* SoMe icon inserted using Font Awesome */
.fa-instagram {
    background: transparent;
    color: #F0F757;
}

/* Instagram hover */
.fa-instagram:hover {
    transform: scale(1.1);
}

/* Styling SoMe icons */
.fa-facebook {
    width: 120px;
    height: 120px;
}

.fa-instagram {
    width: 120px;
    height: 120px;
}

.fa-brands {
    padding: 20px;
    font-size: 4em;
    width: 100px;
    height: 4rem;
    text-align: center;
    text-decoration: none;
}

.footer {
    left: 0;
    bottom: 0;
    width: 100%;
}

/* Worms */
.worm {
    width: 4%;
    height: auto;
    z-index: 10;
}

/* Making worms interactive when hovering */
.worm:hover {
    animation: shake 0.6s;
}

#worm1 {
    position: absolute;
    left: 10%;
    transform: rotate(100deg);
    margin-top: -5%;
    margin-left: -4%;
}

#worm2 {
    position: absolute;
    left: 30%;
    transform: rotate(40deg);
    margin-top: -6%;
    margin-left: -6%;
}

#worm3 {
    position: absolute;
    left: 90%;
    transform: rotate(70deg);
    margin-top: -5%;
    margin-left: -22%;
}

#worm4 {
    position: absolute;
    left: 90%;
    transform: rotate(40deg);
    margin-top: -8%;
    margin-left: -2%;
}

/* Vertical dot navigation bar */
.navbar {
    position: fixed;
    z-index: 100;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
}
.navbar-button {
    position: relative;
    display: block;
    width: 16px;
    height: 16px;
    margin-bottom: 28px;
    background-color: #fff;
    opacity: .25;
    border: 3px solid #fff;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.navbar-button.selected {
    opacity: 1;
    transform: scale(1.2);
}

.navbar-button:active {
    outline: none;
}

/* Hover tooltips for navbar */
.navbar-button-link {
    position: absolute;
    top: 50%;
    visibility: hidden;
    transform: translate(-120%, -50%);
    width: 5rem;
    opacity: 0;
    color: #fff;
    transition: all .3s;
    text-decoration: none;
    text-align: right;
    font-family: 'finalsix', sans-serif;
    font-size: 0.8em;
}

.navbar-button:hover .navbar-button-link {
    visibility: visible;
    opacity: 1;
    transform: translate(-110%, -50%);
}

.navbar-button:before,
.navbar-button:after {
    content: "";
}

.navbar-button:hover {
    cursor: pointer;
}

/* ANIMATION */

/* For debugging, TODO: remove */
#currpix {
    position: fixed;
    top: 20px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 20px;
    z-index: 9999;
}

.animation-image {
    position: absolute;
}

.scene-container {
    position: fixed;
    top: 0%;
    margin-top: 30%;
    width: 100%;
}

/* Positioning all the elements of the scene */
#animation-grass {
    top: 26rem;
    width: 50%;
    z-index: 101;
}

#animation-man {
    top: 1.5rem;
}

#animation-lawnmower {
    top: 16rem;
    z-index: 102;
}

#animation-flowers-in-hand {
    left: 17.6rem;
    z-index: 100;
}

#animation-grass-3 {
    left: 20rem;
    z-index: 101;
    transform: scale(0.85);
}

#animation-flowers-in-grass {
    left: 34.5rem;
    z-index: 100;
    transform: scale(0.7);
}

#animation-dandelions-in-grass {
    left: 25rem;
    z-index: 100;
    transform: scale(0.7);
}

#animation-soil {
    left: 20rem;
    transform: scale(0.86);
}

#animation-stones {
    left: 23rem;
    transform: scale(0.75);
}

#animation-ants {
    left: 20rem;
    top: 26rem;
    transform: scale(0.75);
}

#animation-worms {
    left: 23rem;
    top: 26rem;
    transform: scale(0.75);
}

#animation-bees {
    left: 23rem;
    transform: scale(0.75);
    z-index: 103;
}

#animation-butterflies {
    top: 12rem;
    transform: scale(0.75);
}

#animation-mole {
    left: 60rem;
    top: 30.5rem;
    transform: scale(0.75);
}

.animation-textbox {
    background-color: #fff;
    width: 300px;
    height: 100px;
    border-radius: 25px;
    left: 45rem;
    top: 2.5rem;
}

.bee-textbox {
    background-color: #fff;
    width: 15rem;
    height: 4.5rem;
    border-radius: 25px;
}

.animation-textbox-button {
    transform: scale(0.75);
}

.flex-centered {
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-pop-up {
    padding: 0.5rem;
    font-family: 'finalsix', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 0.8em;
    color: #56351E;
    text-align: center;
}

/* ANIMATION END */

/* PROJECT GALLERY */
body {
    background-color: #9db6a4;
    height: 100vh;
    margin: 0;
    padding: 0;
}

.gallery-container {
    width: 70%;
    /*max-width: 1280px;*/
    margin: 0 15%;
    margin-top: 35px;
    padding: 0;
    box-sizing: border-box;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 31% 31% 31%;
    grid-gap: 4rem 3.5%;
}

.gallery-item {
    display: flex;
    aspect-ratio: 1 / 1;
    background-color: #1EAAFC;
    color: #fff;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.gallery-item .gallery-label {
    align-self: flex-end;
    margin-bottom: -25px;
    font-family: 'finalsix', sans-serif;
    font-weight: 300;
    font-style: normal;
    color: #dfffd4;
}

.gallery-item .gallery-triangle {
    align-self: flex-end;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 75px 75px;
    border-color: transparent transparent #7FA088 transparent;
    margin-left: auto;
}

.gallery-triangle::after {
    content: "↘";
    font-size: 30px;
    color: #f0f757;
    position: relative;
    left: -30px;
    bottom: -36px;
}

.popup-bg {
    background: rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    visibility: hidden;
    opacity: 0;
    transition: all .25s ease-in-out;
}

.popup-bg.show {
    visibility: visible;
    opacity: 1;
}

.popup-container {
    background: white;
    position: fixed;
    top: 5%;
    left: 5%;
    right: 5%;
    bottom: 5%;
    opacity: 1;
    box-shadow: 0 0 26px rgba(0, 0, 0, 0.075);
}

.popup-content {
    width: 100%;
    height: 100%;
}

.popup-pic-container {
    width: 60%;
    height: 100%;
    float: left;
}

.popup-text-container {
    background: white;
    width: 40%;
    height: 100%;
    float: right;
    padding: 26px 30px;
    box-sizing: border-box;
    font-family: 'finalsix', sans-serif;
    font-weight: 300;
    font-style: normal;
}

.popup-exit {
    right: 0;
    top: 0;
    position: absolute;
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 32px;
    line-height: 38px;
    cursor: pointer;
}

.popup-pic,
.popup-pic-container {
    width: 55%;
}

.popup-text-container {
    width: 45%;
    font-family: 'finalsix', sans-serif;
    font-weight: 300;
    font-style: normal;
}

/*------*/

.popup-trigger {
    display: none;
}

.popup-slider,
.popup-slider-wrapper {
    position: relative;
    height: 100%;
}

.popup-slide {
    background-color: black;
    width: 100%;
    overflow: hidden;
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 5000;
    opacity: 0;
    transition: opacity .5s ease-in-out;
}

.popup-slide-img {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 100%;
    display: block;
    margin: 0 auto;
}

.popup-slide-figure {
    height: 100%;
    position: relative;
    margin: 0;
}

.popup-trigger:checked+.popup-slide {
    z-index: 6000;
    opacity: 1;
}

.popup-slider-nav {
    width: 100%;
    text-align: center;
    z-index: 7000;
    position: absolute;
    bottom: 0px;
    padding: 0;
    padding-bottom: 10px;
    font-family: 'finalsix', sans-serif;
    font-weight: 300;
    font-style: normal
}

.popup-slider-nav-item {
    display: inline-block;
}

.popup-slider-nav-label {
    font-size: 15px;
    background-color: #f0f757;
    display: block;
    height: 2em;
    line-height: 2em;
    width: 2em;
    text-align: center;
    border-radius: 50%;
    color: black;
    cursor: pointer;
    transition: background-color .25s, color .25s ease-in-out;
}

.popup-slider-nav-label:hover,
.popup-slider-nav-label:active,
.popup-slider-nav-label:focus {
    background-color: gray;
    color: black;
}

.stop-scrolling {
    height: 100%;
    overflow: hidden;
}

.hide-navbar,
.hide-scene {
    display: none;
}
/* flower SVG animation before the footer */
  #mySVG {
  position: relative;
  margin-top: -0.6%;
  height: 220px;
  margin-left: 55%;
}

.quote{
    font-family: Reenie Beanie-Regular;
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 3em;
    margin-top: 3em;
    color: yellow;
    margin-left: 8%;
    margin-right: 8%;
}

.quote-name{
    font-family: Reenie Beanie-Regular;
    font-size: 3.5em;
    color: yellow;
    margin-left: 70%;
    margin-right: 10%;
}
/* MEDIA QUERIES TO MAKE THE WEBDOC RESPONSIVE */
@media only screen and (min-width: 1940px) {
    .footer_title {
        font-size: 6rem;
    }

    .fa-brands {
        font-size: 5.5em;
    }

    .icons_container {
        margin-left: 47%;
        margin-bottom: 1.8rem;
    }

    .copy {
        font-weight: 300;
        font-size: 1.6em;
    }
    .hands{
        width: 120%;
    }

    #text1 {
        font-size: 8em;
        margin-top: 7rem;
    }

    #text2 {
        font-size: 4em;
        margin-top: -3rem;
        margin-left: 13rem;
    }

    #grass {
        z-index: 3;
        object-fit: cover;
        margin-top: 1rem;
        width: 110%;
    }

    #flowers {
        margin-top: 34rem;
    }

    #city {
        margin-top: 48rem;
    }

    #text1 {
        font-size: 23em;
        margin-top: 25rem;
    }

    #text2 {
        font-size: 13em;
        margin-top: -3rem;
        margin-left: 29rem;
    }
    .copy {
        font-weight: 300;
        font-size: 3.3em;
    }
    .copy-heading{
        font-size: 4.9em;
    }
    #mySVG {
        margin-top: -8%;
        margin-left: 51%;
      }

    .navbar-button-link {
        font-size: 2rem;
        right: 2rem;

    }
    .navbar-button {
        width: 40px;
        height: 40px;
    }
}
@media only screen and (max-width: 1300px) {
    .navbar-button-link {
        font-size: 0.8rem;
    }
    .navbar-button {
        width: 16px;
        height: 16px;
    }
    .footer_title {
        font-size: 3rem;
    }

    .fa-brands {
        font-size: 3.5em;
    }

    .icons_container {
        margin-left: 40%;
        margin-bottom: 1.8rem;
    }

    .copy {
        font-weight: 300;
        font-size: 1.6em;
    }

    #text1 {
        font-size: 8em;
        margin-top: 7rem;
    }

    #text2 {
        font-size: 4em;
        margin-top: -3rem;
        margin-left: 13rem;
    }

    #grass {
        z-index: 3;
        object-fit: cover;
        margin-top: 1rem;
        width: 110%;
    }

    #flowers {
        margin-top: 8rem;
    }

    #city {
        margin-top: 5rem;
    }

    #text1 {
        font-size: 10em;
        margin-top: 7rem;
    }

    #text2 {
        font-size: 6em;
        margin-top: -3rem;
        margin-left: 13rem;
    }
    .copy {
        font-weight: 300;
        font-size: 1.3em;
    }
    .copy-heading{
        font-size: 2.1em;
    }
    .quote{
        font-size: 2.9em;
  }
  .quote-name{
      font-size: 2.9em;
  }
}

@media only screen and (max-width: 1110px) {
    #city {
        margin-top: 9em;
    }

    #text1 {
        font-size: 9em;
        margin-top: 6rem;
    }

    #text2 {
        font-size: 5em;
        margin-top: -3rem;
        margin-left: 13rem;
    }
    .copy-heading{
        font-size: 2em;
    }
    .quote{
        font-size: 2.6em;
  }
  .quote-name{
      font-size: 2.6em;
  }
}

@media only screen and (max-width: 880px) {
    .gallery-item .gallery-triangle {
        border-width: 0 0 60px 60px;
    }

    .gallery-triangle::after {
        font-size: 24px;
        left: -24px;
        bottom: -30px;
    }

    .footer_title {
        font-size: 2.8rem;
        left: 25%;
    }

    .fa-brands {
        font-size: 3em;
    }

    .icons_container {
        margin-left: 34%;
        margin-bottom: 0.8rem;
    }
    .copy {
        font-weight: 300;
        font-size: 1.25em;
            font-weight: 300;
            font-size: 1.27em;
            margin-left: 15%;
            margin-right: 15%;
    }
    .copy-heading{
        font-size: 1.6em;
        margin-left: 15%;
        margin-right: 15%;
    }
    .dig-deeper {
        left: 47%;
        bottom: 19%;
        font-size: 1.5em;
    }

    .shovel {
        left: 49.5%;
        bottom: 8%;
        width: 3.5rem;
    }

    #text1 {
        font-size: 8em;
        margin-top: 7rem;
    }

    #text2 {
        font-size: 4em;
        margin-top: -3rem;
        margin-left: 13rem;
    }

    #grass {
        z-index: 3;
        object-fit: cover;
        margin-top: 1rem;
        width: 110%;
    }

    #flowers {
        margin-top: 15rem;
    }

    #city {
        margin-top: 15.8em;
    }
    #mySVG {
        position: relative;
        margin-top: -10%;
        height: 220px;
        margin-left: 53%;
      }
      .quote{
        font-size: 2.3em;
  }
  .quote-name{
      font-size: 2.3em;
  }
}

@media only screen and (max-width: 600px) {
    .footer_title {
        font-size: 2.1rem;
        left: 26%;
    }

    .gallery-grid {
        grid-template-columns: 48% 48%;
        grid-gap: 3rem 4%;
    }

    .popup-container {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .fa-brands {
        font-size: 2.5em;
    }

    .icons_container {
        margin-left: 30%;
        margin-bottom: 0.5rem;
    }

    .dig-deeper {
        left: 46%;
        bottom: 17%;
        font-size: 1.4em;
    }

    .shovel {
        left: 50.5%;
        bottom: 8%;
        width: 3rem;
    }

    #text1 {
        font-size: 8em;
        margin-top: 7rem;
    }

    #text2 {
        font-size: 4em;
        margin-top: -3rem;
        margin-left: 13rem;
    }

    #grass {
        z-index: 3;
        object-fit: cover;
        margin-top: 0.3em;
        width: 110%;
    }

    #flowers {
        margin-top: 15rem;
    }

    #city {
        margin-top: 15.4em;
    }
}

@media only screen and (max-width: 600px) {
    #city {
        margin-top: 18.9em;
    }

    #text1 {
        font-size: 7.5em;
        margin-top: 9rem;
    }

    #text2 {
        font-size: 3.5em;
        margin-top: -3rem;
        margin-left: 13rem;
    }
    .copy {
        font-weight: 300;
        font-size: 1.1em;
    }
    #mySVG {
        position: relative;
        margin-top: -9.8%;
        height: 220px;
        margin-left: 30.4%;
      }
      .quote{
          font-size: 2em;
    }
    .quote-name{
        font-size: 2em;
    }
}

@media only screen and (max-width: 375px) {
    .footer_title {
        font-size: 1.4rem;
        left: 26%;
    }

    .gallery-grid {
        grid-template-columns: 88%;
        grid-gap: 3rem 4%;
    }

    .fa-brands {
        font-size: 2.5em;
    }

    .icons_container {
        margin-left: 23%;
        margin-bottom: 0.3em;
    }

    .dig-deeper {
        left: 43%;
        bottom: 23%;
        font-size: 1.2em;
    }

    .shovel {
        left: 52.5%;
        bottom: 10%;
        width: 3rem;
    }

    #text1 {
        font-size: 5em;
        margin-top: 7rem;
    }

    #text2 {
        font-size: 3em;
        margin-top: -2rem;
        margin-left: 6rem;
    }

    #grass {
        z-index: 3;
        object-fit: cover;
        margin-top: 0.8em;
        width: 110%;
    }

    #flowers {
        margin-top: 17rem;
    }

    #city {
        margin-top: 20.4em;
    }
    .copy {
        font-weight: 300;
        font-size: 1em;
    }
    .copy-heading{
        font-size:1.3em;
    }
    #mySVG {
        position: relative;
        margin-top: -14%;
        height: 200px;
        margin-left: 24%;
      }
}
@media only screen and (max-width: 320px) {
    #city {
        margin-top: 17.5em;
    }
}
