@import url('https://fonts.googleapis.com/css2?family=Oswald&family=Lato&display=swap');

body {
  font-family: 'Lato', sans-serif;
  color: #343737;
  background-color: #e9f0f2;
}


h1,
h2 {
  font-family: 'Oswald', sans-serif;
  color: #c41e3a;
}

.tagline {
  font-size: 1.3rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
}

.comments {
  font-style: italic;
}

i {
  font-size: 2rem;
  color: #c41e3a;
}

i:hover,
a>:hover {
  color: #747879;
}

a, a:hover, a:active, a:visited, a:focus, a>, a>:hover, a>:active, a>:visited, a>:focus {
  text-decoration:none;
}

.bg--henchick {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/hen-chick.svg");
}


.bg--trigghi {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/trigg-hi.svg");
}

.bg--siddhi {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/sidd-hi.JPG");
}


.bg-height--50 {
  height: 50vh;
}


/***POLAROID***/
/*Adapted from: https://codepen.io/Wandersonsc/pen/RMerRy*/

.polaroid {
  background: #fff;
  padding: 1rem;
  box-shadow: 0 0.2rem 1.2rem rgba(0, 0, 0, 0.2);
}

.polaroid-img {
  max-width: auto;
  height: 25vh;
}

.item,
.item2 {
  display: inline-block;
}

.item .polaroid:before,
.item2 .polaroid:before {
  content: '';
  position: absolute;
  z-index: -1;
  transition: all 0.35s;
}

.item {
  transform: scale(0.8, 0.8) rotate(5deg);
  transition: all 0.35s;
}

.item .polaroid:before {
  transform: rotate(5deg);
  height: 20%;
  width: 47%;
  bottom: 30px;
  right: 12px;
  box-shadow: 0 2.1rem 2rem rgba(0, 0, 0, 0.4);
}

.item2 {
  transform: scale(0.8, 0.8) rotate(-5deg);
  transition: all 0.35s;
}

.item2 .polaroid:before {
  transform: rotate(-5deg);
  height: 20%;
  width: 47%;
  bottom: 30px;
  left: 12px;
  box-shadow: 0 2.1rem 2rem rgba(0, 0, 0, 0.4);
}

/*.item:hover,
.item2:hover {
  filter: none;
  transform: scale(1, 1) rotate(0deg) !important;
  transition: all 0.35s;
}*/

.item:hover .polaroid:before,
.item2:hover .polaroid:before {
  content: '';
  position: absolute;
  z-index: -1;
  transform: rotate(0deg);
  height: 90%;
  width: 90%;
  bottom: 0%;
  right: 5%;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
  transition: all 0.35s;
}