/* Global Styles */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Montserrat", sans-serif;
}

h1 {
  font-size: 4rem;
}

li,
label,
input,
p {
  font-size: 2rem;
}

h2 {
  font-size: 3.5rem;
}

h3 {
  font-size: 3rem;
}

h4,
h5 {
  font-size: 2.5rem;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/*button styling*/
.feed-button {
  padding: 4rem 8rem;
  background: #132132;
  color: white;
  border: none;
  min-width: 40vw;
  min-height: 20vh;
  font-size: 8rem;
  cursor: pointer;
  -webkit-transition: background 0.15s ease-in-out;
  transition: background 0.15s ease-in-out;
  font-family: "Montserrat", sans-serif;
}

button:hover {
  background-color: #1e344f;
}

.main-head {
  margin: 0 0 0 auto;
}

nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  min-height: 12vh;
  background-color: #132132;
  color: white;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

nav .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 10rem;
          flex: 1 1 10rem;
}

nav .logo h1 {
  margin: 2rem;
  text-align: center;
}

nav .logo img {
  max-height: 10vh;
  min-width: 10vw;
  padding: 0.2rem 0.2rem;
}

nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 40rem;
          flex: 1 1 40rem;
}

/*styling on main setion to center everything, set backgound and minimum hieght*/
.main-section {
  min-height: 88vh;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background: url("http://waicol.digi.school.nz/year12/2020/BAKERCameron/assessment/Cat%20feeder%20website/img/biscuit.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
  text-align: center;
}

a {
  font-size: 2.5rem;
  color: white;
}

/*styling on active nav link*/
.active {
  background: white;
  color: black;
  padding: 1rem 3rem;
  border-radius: 2rem;
}

/*gallery styling*/
.gallery-section-1 {
  display: -ms-grid;
  display: grid;
  overflow: hidden;
  min-height: 20vh;
  -ms-grid-columns: (1fr)[9];
      grid-template-columns: repeat(9, 1fr);
}

.gallery-section-1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 0.2rem solid black;
}

.gallery-section-1 .gallery4,
.gallery-section-1 .gallery5,
.gallery-section-1 .gallery6 {
  width: 120%;
  height: 120%;
}

.gallery-section-2 {
  display: -ms-grid;
  display: grid;
  overflow: hidden;
  min-height: 60vh;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
}

.gallery-section-2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 0.2rem solid black;
}

.gallery-section-3 {
  display: -ms-grid;
  display: grid;
  overflow: hidden;
  min-height: 20vh;
  -ms-grid-columns: (1fr)[6];
      grid-template-columns: repeat(6, 1fr);
}

.gallery-section-3 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 0.2rem solid black;
}

/*Footer styling*/
footer {
  background: #132132;
  color: white;
  min-height: 10vh;
  padding: 0% 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

footer ul {
  color: white;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 40rem;
          flex: 1 1 40rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

footer h4 {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 40rem;
          flex: 1 1 40rem;
}

/*sets video to 16:9 aspect ratio*/
.container {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
  width: 85%;
}

/*Sets video to appropriate size*/
.responsive-iframe {
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 70%;
  height: 70%;
  border: none;
}

.livestream {
  -ms-flex-line-pack: center;
      align-content: center;
  min-width: 100vw;
  min-height: 100vh;
}

/*sets form width*/
.form {
  width: 100%;
}

@media screen and (max-width: 1465px) {
  html {
    font-size: 55%;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 38%;
  }
  /*LOGO*/
  nav .logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 20rem;
            flex: 1 1 20rem;
    margin-top: 2rem;
  }
  nav ul {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 60rem;
            flex: 1 1 60rem;
    margin: 2rem 0rem;
  }
  /* GALLERY */
  .gallery-section-1,
  .gallery-section-2,
  .gallery-section-3 {
    -ms-grid-columns: (minmax(20rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  }
  .gallery-section-1 img,
  .gallery-section-2 img,
  .gallery-section-3 img {
    grid-row: auto;
    grid-column: auto;
  }
  .gallery-section-1,
  .gallery-section-3 {
    min-height: 120vh;
  }
  .gallery-section-2 {
    min-height: 90vh;
  }
  .gallery-section-1 .gallery4,
  .gallery-section-1 .gallery5,
  .gallery-section-1 .gallery6 {
    width: 100%;
    height: 100%;
  }
  /*LIVESTREAM*/
  .responsive-iframe {
    width: 100%;
    height: 100%;
  }
  .container {
    width: 100%;
  }
  /*BUTTON*/
  .feed-button {
    min-height: 40vw;
    min-width: 80vw;
  }
  /*FORM*/
  .form {
    width: 95vh;
  }
}
/*# sourceMappingURL=style.css.map */