/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: black;
  color: white;
  font-family: Verdana;
}

img {
  height: 250px;
  width:auto;
}

*, ::after, ::before 
{
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  
  -webkit-transition: all .2s linear 0;
     -moz-transition: all .2s linear 0;
          transition: all .2s linear 0;
}

* { margin: 0; padding: 0; }

.wrapper 
{
  width: 345px;
  height: 275px;
  margin: 20% auto 0.5em;
  overflow: visible; 
  cursor: pointer;
  
}

.bird 
{
  width: 800px;
  height: auto;
  top: -358px;
  left: -325px;
  position: relative;
}

.wrapper:hover { overflow: visible; }

.wrapper:hover .bird > div 
{
  
    -webkit-transition: all 1s linear 0;
     -moz-transition: all 1s linear 0;
          transition: all 1s linear 0;
  
  border: 1px dashed rgb(45,120,125);
  opacity: .75;
}

.bird > div 
{
  width: 140px;
  height: 140px;
  background: #2daae1;
  border-radius: 100%;
  position: absolute;
  border: 1px dashed rgb(45,170,225);
  opacity: 0.75;
}

.bird .tail-cut,
.bird .feather-bottom-cut,
.bird .feather-middle-cut,
.bird .body-top-cut,
.bird .mouth-bottom-cut,
.bird .mouth-top-cut {
  background: white;
}

.bird .body 
{
  width: 390px;
  height: 390px;
  top: 240px;
  left: 240px;  
}

.bird .tail-cut 
{
  width: 285px;
  height: 285px;
  left: 198px;
  top: 315px;  
}

.bird .feather-bottom 
{
  left: 366px;
  top: 430px;
}

.bird .feather-bottom-cut 
{
  left: 310px;
  top: 384px;
}

.bird .feather-middle 
{
  left: 344px;
  top: 382px;
}

.bird .feather-middle-cut 
{
  left: 300px;
  top: 320px;
}

.bird .feather-top {
  top: 335px;
  left: 345px;
}

.bird .body-top-cut 
{
  width: 390px;
  height: 390px;
  top: 52px;
  left: 310px;
}

.bird .mouth-bottom 
{
  width: 130px;
  height: 130px;
  top: 302px;
  left: 536px;
}

.bird > .mouth-bottom-cut 
{
  width: 235px;
  height: 235px;
  top: 166px;
  left: 495px;
}

.bird > .mouth-top 
{
  width: 130px;
  height: 130px;
  top: 279px;
  left: 527px;
}

.bird > .mouth-top-cut 
{
  width: 235px;
  height: 235px;
  top: 147px;
  left: 472px;
}

.bird > .head 
{
  width: 135px;
  height: 135px;
  top: 358px;
  left: 493px;
}