<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.two-buttons{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem; 
    font-size: 24px;
    margin-left: 10px;


}
.btn {
    line-height: 50px;
    text-align: center;
    width: 250px;
    cursor: pointer;
    
  }
  
  /* 
  ========================
        BUTTON ONE
  ========================
  */
  .btn-one {
    color: #FFF;
    transition: all 0.3s;
    position: relative;
    
    
  }
  .btn-one span {
    transition: all 0.3s;
  }
  .btn-one::before {
    content: '';
    position: absolute;
    
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: all 0.3s;
    border-top-width: 1px;
    border-bottom-width: 1px;
    border-top-style: solid;
    border-bottom-style: solid;
    border-top-color: rgba(255,255,255,0.5);
    border-bottom-color: rgba(255,255,255,0.5);
    transform: scale(0.1, 1);
  }
  .btn-one:hover span {
    letter-spacing: 2px;
  }
  .btn-one:hover::before {
    opacity: 1; 
    transform: scale(1, 1); 
  }
  .btn-one::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all 0.3s;
    background-color: rgba(255,255,255,0.1);
  }
  .btn-one:hover::after {
    opacity: 0; 
    transform: scale(0.1, 1);
  }

  /* 
  ========================
        BUTTON TWO
  ========================
  */

  
  .button-two {
    position: relative;
    padding: 0px 70px;
    border: none;
    color: #fff;
    cursor: pointer;
    background-color: #5E3322;
    transition: all 1s ease;
    min-width: 24px;
  }
  
  .button-two:active {
    transform: scale(0.95);
  }
  
  .button-two:before,
  .button-two:after {
    position: absolute;
    content: "";
    width: 150%;
    left: 50%;
    height: 100%;
    transform: translateX(-50%);
    z-index: -1000;
    background-repeat: no-repeat;
    
  }
  
  .button-two:hover:before {
    top: -70%;
    background-image: radial-gradient(circle, #594545 20%, transparent 20%),
      radial-gradient(circle, transparent 20%, #594545 20%, transparent 30%),
      radial-gradient(circle, #594545 20%, transparent 20%),
      radial-gradient(circle, #594545 20%, transparent 20%),
      radial-gradient(circle, transparent 10%, #594545 15%, transparent 20%),
      radial-gradient(circle, #594545 20%, transparent 20%),
      radial-gradient(circle, #594545 20%, transparent 20%),
      radial-gradient(circle, #594545 20%, transparent 20%),
      radial-gradient(circle, #594545 20%, transparent 20%);
    background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%,
      10% 10%, 18% 18%;
    background-position: 50% 120%;
    animation: orangeTopBubbles 1s ease;
  }
  
  @keyframes orangeTopBubbles {
    0% {
      background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%,
        40% 90%, 55% 90%, 70% 90%;
    }
  
    50% {
      background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%,
        50% 50%, 65% 20%, 90% 30%;
    }
  
    100% {
      background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%,
        50% 40%, 65% 10%, 90% 20%;
      background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
  }
  
  .button-two:hover::after {
    bottom: -70%;
    background-image: radial-gradient(circle, #594545 20%, transparent 20%),
      radial-gradient(circle, #594545 20%, transparent 20%),
      radial-gradient(circle, transparent 10%, #594545 15%, transparent 20%),
      radial-gradient(circle, #594545 20%, transparent 20%),
      radial-gradient(circle, #594545 20%, transparent 20%),
      radial-gradient(circle, #594545 20%, transparent 20%),
      radial-gradient(circle, #594545 20%, transparent 20%);
    background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 20% 20%, 18% 18%;
    background-position: 50% 0%;
    animation: orangeBottomBubbles 1s ease;
  }
  
  @keyframes orangeBottomBubbles {
    0% {
      background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%,
        70% -10%, 70% 0%;
    }
  
    50% {
      background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%,
        105% 0%;
    }
  
    100% {
      background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%,
        110% 10%;
      background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
  }

    /* 
  ========================
        BUTTON THREE
  ========================
  */
  .btn.primary {
      background: none;
      border: solid 2px #fcfcfc;
      color: #fffefd;
      cursor: pointer;
      display: inline-block;
      font-family: 'Helvetica', Arial, sans-serif;
      font-size: 0.875em;
      font-weight: bold;
      outline: none;
      padding: 20px 35px;
      text-transform: uppercase;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -ms-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
  }

  .btn.primary:hover {
    background: #474544;
    color: #F2F3EB;}

      /* 
  /* ========================
        BUTTON FOUR
  ========================
  */
  
  /* .btn.secondary {
    background: transparent;
    border: 1px solid white;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 1rem;
  } */ </pre></body></html>