* {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    /* background-color: lightsalmon; */
    background-color: white;
    color: black;
    /* background: url(./images/colored-pencils-free-photo-picjumbo-com.jpg);*/
    background-position: center;
    background-attachment: scroll;
    background-size: cover;
}

p {

    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10pt;
}

header {
    display: block;
    justify-content: center;
    align-items: center;

    background-color: black;
    color: white;
    margin: 0;
    font-family: Arial;
    padding: 0px;
    text-align: center;
    width: 100%;
    
}

.comment {
    display: flex;
    background: rgba(87, 200, 245, 0.6);
    color: white;
    padding: 2rem;
    margin: 16px;
    border-radius: 10px;
}


.brand {
    text-align: center;
    margin: 0;
    font-size: 50px;
    cursor: grab;
    cursor: -webkit-grab;
    z-index: 10;
    position: relative;
    background-color: white;
    border-radius: 50%;
    width: 75px;
    height: 75px;
    border: 1px solid #777;
}

section {
    background: rgba(225, 225, 225, .6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin: 2rem auto;
    border: 4px solid white;
    border-radius: 10px;



}

.swiper {

    display: flex;
    margin: 50px 10px;
    width: 100%;
    max-width: 400px;
    height: auto;
}

.swiper-slide {
    text-align: center;

}

img {
    flex-basis: 1fr;
    width: 100%;
    height: auto;
}

.pagination-container {
    margin-top: 1rem;
    display: block;
    justify-content: center;
    height: 60px;
}

.butterfly_container {

    display: flex;
    flex-wrap: wrap;
    width: 90%;
    justify-content: center;
    align-items: center;
    margin: 2rem auto;
    padding: 1rem;




}.butterfly_container img {
    flex-basis: 1fr;
    margin: 1rem;

}
.butterfly_container img {
    width: 100%;
    max-width: 525px;
    height: auto;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
}

.butterfly_container p {
    display: flex;
    width: 100%;
    background: rgba(87, 200, 245, 0.6);
    margin: 2rem;
    padding: 1rem;
    color: white;
    border-radius: 10px;
}

p.center {
    background:rgba(255, 255, 255, .6);
    color: orange;
    font-size: 14pt;
    font-weight: bold;
    text-align: center;
    justify-content: center;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;

}

p.left {
    font-size: 10pt;
    text-align: left;
    justify-content: flex-start;
}

.waves {
    position:relative;
    width: 100%;
    height:15vh;
    margin-bottom:-7px; /*Fix for safari gap*/
    min-height:100px;
    max-height:150px;
  }
  
  
  /* Animation */
  
  .parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
  }
  .parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
  }
  .parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
  }
  .parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
  }
  .parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
  }
  @keyframes move-forever {
    0% {
     transform: translate3d(-90px,0,0);
    }
    100% { 
      transform: translate3d(85px,0,0);
    }
  }
  /*Shrinking for mobile*/
  @media (max-width: 768px) {
    .waves {
      height:40px;
      min-height:40px;
    }
    .content {
      height:30vh;
    }
    h1 {
      font-size:24px;
    }
  }