@font-face {
    font-family: gotham;
    src: url("../assets/fonts/gothambook.otf");
}
@font-face {
    font-family: gothambold;
    src: url("../assets/fonts/gothamblack.otf");
}
@font-face {
    font-family: gothamsemibold;
    src: url("../assets/fonts/gothammedium.otf");
}

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #232527;
    font-family: gothamsemibold;
    overflow-y: hidden;
}
.content  {
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
    align-items: center;
}
#myCanvas{
    position: absolute;
    display: block;
  }
footer {
    flex-shrink: 0;
    width: 100%;
    margin-top: 30px;
    --bs-bg-opacity: 0 !important;
    z-index: 200; 
}

p {
    font-family: gotham;
}

.content {
    flex: 1;
    z-index: 200;
}

.no-link-deco {
    text-decoration: inherit;
}

.card-link {
    overflow: hidden;
    color: inherit;
    text-decoration: inherit;
    background-color: transparent;
    transition: 0.1s;
}

.card-link:hover {
    background-color: #3d5771;
}

.card-image-holder {
    width: auto;
    height: 100px;
}

.blurbackdrop {
    backdrop-filter: blur(15px);
    background: rgba(0, 0, 0, .2);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15); 
    border: 1.4px solid rgb(78, 78, 78);
}

.team-icon {
    border-radius: 50%;
    margin-bottom: 16px;
}

.cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
   
  }
  .cursor--small {
    width: 5px;
    height: 5px;
    left: -2.5px;
    top: -2.5px;
    border-radius: 50%;
    z-index: 11000;
    
    background: rgb(236, 236, 236);
  }
  .cursor--canvas {
    width: 100vw;
    height: 100vh;
    z-index: 12000;
   
  }

.tag {
    border-radius: 5px;
    padding: 2px 5px;
    margin-right: 5px;
    font-size: 12px;
    font-family: gotham;
    color: #fff;
    background-color: rgba(0, 0, 0, .2);
}

.tag-red {
    background-color: #fd685785;
    filter: drop-shadow(0 0 5px #fd6757);
}

body {
    cursor: none;
}