/* 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." */

html {
height: 100%;
}

body {
  background-color: pink;
  background-image: url('DounutBackground.gif');
  background-repeat: no-repeat;
  background-size: cover;
  color: black;
  font-family: Verdana;
  margin: 0;
}

 @font-face {
  font-family: ChubbyAndGroovy;
  src: url(ChubbyAndGroovy.otf);
 }
  
  h1 {
    font-family: ChubbyAndGroovy;
    text-align: center;
    margin: 0;
    color: #f6b759;
    text-shadow: 0.1vw 0.1vw black;
    font-size: 7vw;
  }
  
  .h1img {
    display: inline-block;
    width: 9vw;
    margin-bottom: -2vw;
    filter: drop-shadow(0.1vw 0.1vw black);
    animation-name: wiggle;
    animation-duration: 0.25s;
    animation-timing-function: ease-in-out;
    animation-direction: alternate;
    animation-iteration-count: infinite;
  }
  

  
  @keyframes wiggle {
      0% {
    transform: rotate(-10deg);
      }
    100% { 
        transform:rotate(10deg); 
    } 
  }
  
  h2 {
    text-align: center;
    margin: 0;
    text-shadow: 0.1vw 0.1vw #ffb5e8;
    font-size: 2vw;
  }
  
  h3 {
    text-align: center;
    text-shadow: 0.1vw 0.1vw white;
    font-size: 1.5vw;
    margin: 0.25vw;
  }
  
  h4 {
    text-align: center;
    text-shadow: 0.1vw 0.1vw white;
    font-size: 1vw;
    margin: 0.25vw;
  }
  
  .FlexBox {
    margin: auto;
    display: flex;
    justify-content: center;
  }
  
  .info {
    width: 20%;
    margin: 1%;
    border-style: solid;
    border-width: 0.25vw;
    border-radius: 0.5vw;
    border-top-color: #c8c8c8;
    border-left-color: #c8c8c8;
    border-right-color: #878787;
    border-bottom-color: #878787;
    background: #e0e0e0;
  }
  
  .info > p {
    text-align: center;
  }
  
  .info > img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
  }
  
  .Gallary {
    width: 50%;
    margin: 1%;
    border-style: solid;
    border-width: 0.25vw;
    border-radius: 0.5vw;
    border-top-color: #ffa8a7;
    border-left-color: #ffa8a7;
    border-right-color: #ff7d86;
    border-bottom-color: #ff7d86;
    background: #ffd2b1;
    
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .Gallary > img {
    margin: 1%;
    border-style: solid;
    border-width: 0.25vw;
    border-radius: 0.5vw;
    border-top-color: #ffa8a7;
    border-left-color: #ffa8a7;
    border-right-color: #ff7d86;
    border-bottom-color: #ff7d86;
    background: #ffd2b1;
  }
  
  footer {
    width: 72.5%;
    margin: auto;
    border-style: solid;
    border-width: 0.25vw;
    border-radius:0.5vw 0.5vw 0 0;
    border-top-color: #ffa8a7;
    border-left-color: #ffa8a7;
    border-right-color: #ff7d86;
    border-bottom: none;
    background: #ffd2b1;
  }