html {
  height: 100%;
}

body {
  background: linear-gradient(-45deg, #d16ba5, #c777b9, #ba83ca, #aa8fd8, #9a9ae1, #8aa7ec, #79b3f4, #69bff8, #52cffe, #5ffbf1, #46eefa, #5ffbf1);
  background-size: 300% 300%;
  animation: gradient 10s ease infinite;
  }



@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.body-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
}



.intro-title {
    font-family: 'Fredoka One', 'Jua', sans-serif;
    text-transform: uppercase;
    font-size: 4rem;
    text-align: center;
    letter-spacing: 18px;
    color: #fff7f7;
    text-shadow: 0 1px 0 hsl(174,5%,80%),
    0 2px 0 hsl(174,5%,75%),
    0 3px 0 hsl(174,5%,70%),
    0 4px 0 hsl(174,5%,66%),
    0 5px 0 hsl(174,5%,64%),
    0 6px 0 hsl(174,5%,62%),
    0 7px 0 hsl(174,5%,61%),
    0 8px 0 hsl(174,5%,60%),
    0 0 5px rgba(0,0,0,.05),
    0 1px 3px rgba(0,0,0,.2),
    0 3px 5px rgba(0,0,0,.2),
    0 5px 10px rgba(0,0,0,.2),
    0 10px 10px rgba(0,0,0,.2),
    0 20px 20px rgba(0,0,0,.3);
    display: block;
    position: relative;
    z-index: 0;
    padding: 100px;
  }

.intro {
  height: 35vh;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.intro .container {
  margin-top: 130px;
  width: 55%;
  padding: 0;
  margin-left: auto;
}

.title {
  position: absolute;
  top: 5%;
}

  .header-span {
    display: block;
    font-weight: 100;
  }
  
  hr { 
    max-width: 5em; 
    margin-bottom: 30px; 
  }
  
  .all-the-foods {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    display: block;
  }
  
  div.clip-path-container {
    display: inline-block;
    position: relative;
    height: 250px;
    width: 250px;
    margin: 10px ;
    padding: 3px;
    cursor: pointer;
    transition: all .2s ease-in-out;
    overflow: hidden;  
    border-radius: 50%;
    border-collapse: separate; 
    background-color: #ffffff;
    border: 20px #FFFFFF;
  }
  
  .clip-path-container:focus,
  .clip-path-container:active,
  .clip-path-container:hover {
    border-radius: 50%;
    outline: none;
    border: 20px #FFFFFF;
  }
  
  .food {
    height: 250px;
    width: 250px;
    background-size: cover;
    transition: all .2s ease-in-out;
    transform: scale(1.5); 
    outline: none;
    overflow: hidden;  
    clip-path: polygon(0 100%, 0 0, 52% 0, 52% 100%);
    clip-path: polygon(0 100%, 0 0, 100% 0, 100% 100%);
  }
  
  
  .clip-path-container:hover .food {
    clip-path: polygon(50% 100%, 50% 0, 100% 0, 100% 100%);
    transform: scale(1.1);
    
  }
  
  .clip-path-container:hover .description-holder { 
    left: 20px;
    opacity: 1;
  }
  
  .description-holder {
    position: absolute;
    top: 30px;
    left: 500px;
    height: 300px;
    width: 100px;
    transition: all .4s ease-in-out;
    transition-delay: .1s;
    opacity: 0;
    text-align: right;
  }

  /*.guac-holder {
    top: 45px;
  }*/

  .description-holder > h4 {
    padding-top: 55px;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 2px;
  }
  
  .bibimbap {
    background-image: url("../image/heewon.jpeg");
    background-position: 7px 25px;
    background-size : 90%;
    background-repeat: no-repeat;
  }
  
  .pizza {
    background-image: url('../image/yewon.jpeg');
    background-size: 90%;
    background-position: 10px 25px;
  }
  
  .guacamole {
    background-image: url('../image/sian.jpeg');
    background-position: center;
    background-size : 90%;
    background-repeat: no-repeat;
  }
  
  .cookie {
    background-image: url('../image/sunhyung.jpeg');
    background-position: 7px 25px;
    background-size : 90%;
    background-repeat: no-repeat;
  }
  
  .donut {
    background-image: url('../image/jisu.png');
    background-position: 7px 27px;
    background-size : 90%;
    background-repeat: no-repeat;
  }
  
  .pancake {
    background-image: url('../image/jihyun.jpeg');
    background-position: center;
    background-size : 90%;
    background-repeat: no-repeat;
  }
