* {
    font-family: "Winky Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
body {
    margin: 0;
    padding: 0;
    width: 100%;
}

#wrapper {
    display: grid;
    grid-template-columns: 
    minmax(0px, 1fr) 
    repeat(6, minmax(0, 175px)) 
    minmax(0px, 1fr);
}

#header {
    grid-column: 1 / -1;
    background: #fcfcf2;
    height: auto;
    display: flex;
    flex-flow: row nowrap;
    list-style-type: none;
    justify-content: space-around;
    padding-top: 3%;
    padding-bottom: 3%;
}

#title {
    padding-top: 35px;
}

#header div {
    font-size: 600%;
    justify-content: space-around;
}

#logo {
    width: 200px;
}

#instagram, #facebook {
    width: 80px;
    padding-top: 70px;
}


#nav {
    height: auto;
    font-weight: bold; 
    background-color: #e8e6e6;
    padding:0;
    padding-top: 5px;
    padding-bottom: 5px;
    margin:0;
    text-decoration: none;
    grid-row: 2 / 3;
    grid-column: 1 / -1;
    position: sticky;
    top: 0;
}

nav a {
    text-decoration: none;
    color: black;
    transition: background-color 0.4s ease, color 0.4s ease;
}

nav a:hover {
    color: #c4431f;
}

nav ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-flow: row nowrap;
    list-style-type: none;
    justify-content: space-around;
    font-size: 32px;
}

#content1 {
    grid-column: 1 / -1;
    background: #bdd7d9;
    height: auto;
    font-size: 200%;
    padding-left: 7%;
    padding-right: 7%;
    display:flex;  
}

#content1 div {
    margin: 10px;
    padding: 10px;
    font-size: 32px;
}

#pups {
    width: 350px;
    padding-top: 0%;
    padding-left: 0%;
    padding-bottom: 0%;
}

#content2 {
    grid-column: 1 / -1;
    background: #bdd9c4;
    height: auto;
    font-size: 200%;
    padding-left: 7%;
    padding-right: 7%;
    display:flex;  
}

#content2 div {
    margin: 10px;
    padding: 10px;
    font-size: 32px;
}

#fam {
    width: 350px;
    padding-top: 0%;
    padding-left: 0%;
    padding-bottom: 0%;
}

#footer {
    grid-column: 1 / -1;
    background: #fcfcf2;
    height: auto;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    text-align: center;
    padding-top: 3%;
    line-height: 2.5;
}

#footlogo {
    width: 250px;
    padding-top: 25px;
    padding-bottom: 20px;
}

#follow {
    font-size: 30px;
}

#contact {
    font-size: 30px;
    padding-left: 10%;
}

#apply {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #bdd7d9;
    height: 500px;
    grid-column: 1 / -1;
}

#apply-link {
    display: inline-block;
    padding: 15px 30px;
    font-size: 300%;
    color: #ffffff;
    background-color: #c4431f;
    border: none;
    text-decoration: none;
    transition: background-color 0.4s ease, color 0.4s ease;
    border-radius: 999px; 
    height: auto;
    width: auto;
}

#apply-link:hover {
    background-color: #e8e6e6;
    color: #c4431f;
}

#no-puppies {
    display: none; /*flex = show, none = no show*/
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #bdd7d9;
    height: 500px;
    grid-column: 1 / -1;
    font-size: 25px;
}

#puppies { /* Add more puppies as needed */
      /* paste style="display: none;" in the div tag to hide puppies that are not available */
    display: flex; /*flex = show, none = no show*/
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
    background-color: #bdd7d9;
    height: auto;
    text-align: center;
    font-size:25px;
    grid-column: 1 / -1;
    grid-row: 3 / 4;
}

#available-pup {
    width: 300px;
    padding: 10px;
    padding-top: 30px;
}

#our-dogs {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    background-color: #bdd7d9;
    height: auto;
    width: 100%;
    text-align: center;
    font-size:30px;
    grid-column: 1 / -1;
    grid-row: 3 / 4;
}

#our-dogs > div {
  display: inline-block;
  width: 350px;
  text-align: center;
  padding-top: 50px;
}

#our-dogs img {
    display: block;
    max-width: 100%;
}

#bio {
    font-size: 22px;
    padding: 10px;
}

#indy {
    width: 340px;
    height: auto;
    padding: 10px;
    padding-top: 30px;
}

#max {
    width: 350px;
    height: auto;
    padding: 10px;
    padding-top: 30px;
}

#gallery {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
    background-color: #bdd7d9;
    height: auto;
    width: 100%;
    text-align: center;
    font-size:25px;
    grid-column: 1 / -1;
    grid-row: 3 / 4;
}

#gallery1 {
    width: 300px;
    height: auto;
    padding: 10px;
    padding-top: 30px;
}

@media only screen and (max-width: 1100px) {
    #wrapper {
        display:grid;
        grid-auto-rows: minmax(0, auto);
        grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0, 150px)) minmax(0px, 1fr);
    }
}

@media only screen and (max-width: 1175px) {
    #header div {
        font-size: 350%;
    }

    #logo {
        width: 100px;
    }

    #title {
        padding-top: 0px;
    }

    #instagram, #facebook {
        width: 70px;
        padding-top: 0px;
    }

    nav ul {
        font-size: 30px;
    }

    #content1 div {
        height: auto;
        font-size: 24px;
        padding: 0px;
    }

    #content2 div {
        font-size: 24px;
    }

    #pups {
        width: 400px;
    }

    #footlogo {
    width: 190px;
    }

    #follow {
    font-size: 20px;
    }

    #contact {
    font-size: 20px;
    }

    #no-puppies {
        font-size: 20px;
        height: 400px;
    }

    #apply-link {
        font-size: 250%;
    }
}

@media only screen and (max-width: 800px) {
    #header div {
        font-size: 200%;
    }

    #logo {
        width: 60px;
    }

    #title {
        padding-top: 0px;
    }
    
    #instagram, #facebook {
        width: 40px;
        padding-top: 0px;
    }

    #nav {
        height: auto;
        padding: 0px;
    }

    nav ul{
        flex-flow: column nowrap;
        align-items: center;
        gap: 5px;
        font-size: 25px;
    }

    #nav {
        position: static;
    }

    #content1 {
        flex-flow: column-reverse nowrap;
        align-items: center;
    }

    #content1 div {
        font-size: 15px;
    }

    #pups {
        width: 150px;
    }

    #content2 {
        flex-flow: column nowrap;
        align-items: center;
    }

    #content2 div {
        font-size: 15px;
    }

    #fam {
        width: 150px;
    }

    #footlogo {
        width: 100px;
    }

    #follow {
        font-size: 100%;
    }

    #contact {
        font-size: 100%;
    }

    #available-pup {
    width: 200px;
    padding: 8px;
    padding-top: 20px;
    }

    #bio {
        font-size: 15px;
    }

    #indy, #max {
        width: 150px;
        padding-left: 25%;
    }   

    #no-puppies {
        font-size: 15px;
        height: 300px;
    }

    #apply-link {
        font-size: 200%;
    }

    #gallery1 {
    width: 200px;
    height: auto;
    padding: 10px;
    padding-top: 20px;
    }
}

@media only screen and (max-width: 530px) {
    #header div {
        font-size: 150%;
    }

    #logo {
    width: 40px;
    }

    #instagram, #facebook {
        width: 30px;
        padding-top: 0px;
    }

    #footlogo {
        width: 75px;
    }

    #contact {
        font-size: 12px;
    }

    #follow {
        font-size: 12px;
    }

    #available-pup {
    width: 150px;
    padding: 5px;
    padding-top: 10px;
    }

    #our-dogs {
    flex-direction: column; 
    align-items: center;
    }

    #our-dogs > div {
    width: 90%; 
    display: flex;
    flex-direction: column; 
    align-items: center;
    padding-top: 20px;
    }

    #our-dogs img {
    width: 80%; 
    height: auto;
    padding-left: 10px;
    }

    #indy,
    #max {
    width: 100%;
    }

    #bio {
    font-size: 18px; 
    }

    #no-puppies {
        font-size: 13px;
        height: 250px;
    }

    #apply {
        height: 300px;
    }

    #apply-link {
        font-size: 150%;
    }

    #gallery1 {
    width: 150px;
    height: auto;
    padding: 10px;
    padding-top: 20px;
    }
}