@font-face {
  font-family: "Raleway";
  src: url(./assets/font/Raleway-VariableFont_wght.ttf);
}

body {
  margin: 0;
  background-color: #373b3e !important;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

header {
  position: sticky; 
  top: 0;
  z-index: 1;
}

#content{
  flex:1;
}

.pointer{
  cursor: pointer;
  
}

.content-card:hover{
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

#overlay{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.inside_overlay {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  border-radius: 25px;
}


#evo-chain-content{
  margin-top: 40px;
}

#loading-spinner {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100vw;
  height: calc(100vh - 60px);
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  pointer-events: all;
}

#loading-spinner.active {
  display: flex;
}

#loading-spinner:not(.active) {
  display: none;
}