/* Box Model Hack */
* {
  box-sizing: border-box;
}

/* Clear fix hack */
.clearfix:after {
     content: ".";
     display: block;
     clear: both;
     visibility: hidden;
     line-height: 0;
     height: 0;
}

.clear {
	clear: both;
}

/******************************************
/* BASE STYLES
/*******************************************/

html {
  font-family: 'Nunito', sans-serif;
}

body {
 background: #ff0000;
 background: linear-gradient(90deg,rgba(255, 0, 0, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(0, 0, 255, 1) 100%);
}

h1 {
  font-family: 'Nunito', sans-serif;
  font-size: 50px;
  white-space: nowrap;
}

p {
  font-family: 'Nunito', sans-serif;
}

.bigChicken {
  display: grid;
  place-items: center;
}

.bigChickenImg {
  height: 500px;
  width: auto;
  border-radius: 50%;
  padding: 40px 0;
}

.aboutChicken {
  font-size: 30px;
  width: 35%;
  text-align: center;
}

}

/* MEDIA QUERIES */

@media screen and (max-width: 1150px) {
  .aboutChicken {
    width: 50%;
  }
}

@media screen and (max-width: 790px) {
  .aboutChicken {
    width: 80%;
  }
	
  .bigChickenImg {
    height: 400px;
    width: auto;
  }
	
  h1 {
    font-size: 40px;
  }
}

@media screen and (max-width: 480px){
  .aboutChicken {
    width: 70%;
  }
	
  h1 {
    font-size: 30px;
  }
}



