@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

html {
    scroll-behavior: smooth;
  }

* {
    box-sizing: border-box;
    margin: 0;
}

h1,h2,h3,h4,p,a {
    font-family: "Federo", serif;
    font-weight: 400;
    font-style: normal;
}

body {
    background: -webkit-linear-gradient(160deg, #000 50%, rgba(0, 0, 0, 0) 25%), -webkit-linear-gradient(140deg, #4d002a 80%, #000 20%);
    background: -o-linear-gradient(160deg, #000 50%, rgba(0, 0, 0, 0) 25%), -o-linear-gradient(140deg, #4d002a 80%, #000 20%);
    background: -moz-linear-gradient(160deg, #000 50%, rgba(0, 0, 0, 0) 25%), -moz-linear-gradient(140deg, #4d002a 80%, #000 20%);
    background: linear-gradient(160deg, #000 50%, rgba(0, 0, 0, 0) 25%), linear-gradient(140deg, #4d002a 80%, #000 20%);
}

#glass-fx {
    height: 100%;
background: rgba(255, 255, 255, 0.03);
backdrop-filter: blur(2.5px);
-webkit-backdrop-filter: blur(3.5px);
}

#hdr-mask {
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 1.0) 20%, rgba(0, 0, 0, 1.0) 75%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 1.0) 20%, rgba(0, 0, 0, 1.0) 75%, transparent 100%);
    -webkit-mask-composite: intersect;
}

header {
    background-image: url(../assets/covehr.jpg);
    background-position: center;
    color: white;
}

#hdr-sig {
    width: 5%;
    aspect-ratio: 1/1;
    border-radius: 50%;
}

.w-90{
    width: 95%;
}

.rhombus {
  aspect-ratio: 1;
  clip-path: polygon(50% 0,100% 50%,50% 100%,0 50%);
}

.custom-btn {
    color: #fff;
    padding: 10px 15px;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
  }

  .btn-15 {
    color: #ff9aff;
    border: 1px solid#ff9aff;
    box-shadow: 0 0 5px #ff9aff, 0 0 5px #ff9aff inset;
    z-index: 1;
  }
  .btn-15:after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    background: #4d002a;
    box-shadow:
     0 0 20px  #4d002a;
    transition: all 0.3s ease;
    border-radius: 30px;
  }
  .btn-15:hover {
    color: #fff;
  }
  .btn-15:hover:after {
    left: 0;
    width: 100%;
    border-radius: 30px;
  }
  .btn-15:active {
    top: 2px;
  }

  .cstm-border {
    border-bottom: #ff9aff double;
  }

  .gls {
background: rgba(255, 255, 255, 0.05);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
backdrop-filter: blur(1.5px);
-webkit-backdrop-filter: blur(1.5px);
  }
