@import url('https://fonts.googleapis.com/css2?family=El+Messiri&display=swap');

body{
    background-image: url("../img/bg.jpg");
    background-position:center;
    background-repeat: no-repeat;
    background-size:cover;
    background-attachment: fixed;
    height: auto;
}



.container{
display: flex;
align-items: center;
justify-content: center;
}

canvas{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    display: block;
    margin-top: -250px !important;
    height:fit-content;
}

p{
  font-family: 'El Messiri', sans-serif;
  font-weight: 600;
  letter-spacing: .9px;
    font-size: 20px;
    margin: 2vh 5vw;
    padding: 5vh 10vw;
    background-color: rgba(0, 0, 0, 0.692);
    color: rgb(255, 255, 255);
    border-radius: 50px;
    text-align: center;
}

.logo{
  width: 500px;
}

@media (max-width: 768px) {
    
    p{
      
        padding: 10px 20px;
        border-radius: 10px;
    }
    .logo{
        width: 300px;
    }
  }



/* CSS */
.crtBtn {
    align-items: center;
    appearance: none;
    background-clip: padding-box;
    background-color: initial;
    background-image: none;
    border-style: none;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    flex-direction: row;
    flex-shrink: 0;
    font-family: Eina01,sans-serif;
    font-size: 16px;
    font-weight: 800;
    justify-content: center;
    line-height: 24px;
    margin: 0;
    min-height: 64px;
    outline: none;
    overflow: visible;
    padding: 19px 26px;
    pointer-events: auto;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: middle;
    width: auto;
    word-break: keep-all;
    z-index: 1000;
  }
  
  @media (min-width: 768px) {
    .crtBtn {
      padding: 19px 32px;
    }
  }
  
  .crtBtn:before,
  .crtBtn:after {
    border-radius: 80px;
  }
  
  .crtBtn:before {
    background-color: rgba(249, 58, 19, .32);
    content: "";
    display: block;
    height: 100%;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -2;
  }
  
  .crtBtn:after {
    background-color: initial;
    background-image: linear-gradient(92.83deg, #ff7426 0, #f93a13 100%);
    bottom: 4px;
    content: "";
    display: block;
    left: 4px;
    overflow: hidden;
    position: absolute;
    right: 4px;
    top: 4px;
    transition: all 100ms ease-out;
    z-index: -1;
  }
  
  .crtBtn:hover:not(:disabled):after {
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    transition-timing-function: ease-in;
  }
  
  .crtBtn:active:not(:disabled) {
    color: #ccc;
  }
  
  .crtBtn:active:not(:disabled):after {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), linear-gradient(92.83deg, #ff7426 0, #f93a13 100%);
    bottom: 4px;
    left: 4px;
    right: 4px;
    top: 4px;
  }
  
  .crtBtn:disabled {
    cursor: default;
    opacity: .24;
  }
  
  