html
{
    scroll-behavior: smooth;
    background-color: #000;
}

body,h1,h2,h3,h4,h5,h6
{
    font-family: "Emilys Candy", sans-serif;
}

b
{
    font-weight: bold;
    color: #d4af37;
}

body, html 
{
    height: 100%;
}

.w3-pale-red
{
    background-color: #1a1209f1 !important;
    color: #fff!important;
}

p 
{
    line-height: 2;
}

.bgimg, .bgimg2 
{
  min-height: 100%;
  background-position: center;
  background-size: cover;
}

.bgimg 
{
    background-image: url("/img/background.png");
}

.bgimg2 
{
    background-image: url("/w3images/flowers.jpg");
}
.social-icons 
{
    padding-top: 1rem;
}
.social-icons a 
{
    display: inline-block;
    height: 3.5rem;
    width: 3.5rem;
    background-color: #d4af37;
    color: #fff!important;
    border-radius: 100%;
    text-align: center;
    font-size: 1.5rem;
    line-height: 4.5rem;
    margin-right: 1rem;
    border: none;
    transition: 0.4s;
}
.social-icons a:hover 
{
    background-color: #d6c384;
    color: #d4af37!important;
    border: 1px solid #d4af37;
}

.hoverPink:hover
{
    background-color: #d6c384 !important;
    opacity : 1f;
}

.link
{
    color: #000;
    text-decoration: underline !important;
}

.link:hover
{
    color: #d6c384;
}

.linkDarkHover
{
    color: #000;
    text-decoration: underline !important;
}

.linkDarkHover:hover
{
    color: #d4af37;
}

.linkWhite
{
    color: #fff;
    text-decoration: underline !important;
}

.linkWhite:hover
{
    color: #d4af37;
}

.ownButton
{
    color: #fff !important;
    background-color: #d4af37!important;
    border: none;
    transition: 0.7s;
}

.ownButton:hover
{
    color: #4e3e09 !important;
    background-color: #d6c384 !important;
    border: 1px solid #d4af37;
}

#myVideo {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
  }

  
.row {
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
    padding: 0 4px;
    justify-content: center;
  }
  
  /* Create four equal columns that sits next to each other */
  .column {
    -ms-flex: 25%; /* IE10 */
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
  }
  
  .column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
  }

  .rotate img{
    transition: 1s ease;
    }
    
    .rotate img:hover{
    -webkit-transform: rotateZ(-10deg);
    -ms-transform: rotateZ(-10deg);
    transform: rotateZ(-10deg);
    transition: 1s ease;
    }

  /* Responsive layout - makes a two column-layout instead of four columns */
  @media screen and (max-width: 800px) {
    .column {
      -ms-flex: 50%;
      flex: 50%;
      max-width: 50%;
    }
  }
  
  /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 600px) {
    .column {
      -ms-flex: 100%;
      flex: 100%;
      max-width: 100%;
    }
  }
  
  iframe
  {
    width: 100% !important;
    aspect-ratio: 16 / 9 !important;
  }