:root {
  --glassFx: linear-gradient(271.63deg, rgba(255, 255, 255, 0.0210908) 7.36%, 
  rgba(255, 255, 255, 0.131943) 27.81%, 
  rgba(255, 255, 255, 0) 41.21%, 
  rgba(255, 255, 255, 0.144556) 60.31%, 
  rgba(255, 255, 255, 0) 76.52%, 
  rgba(255, 255, 255, 0.2) 99.12%);
  
  --glassColor: linear-gradient(0deg, rgba(36, 219, 109, 0.15), rgba(36, 219, 109, 0.15));

  --glassBase:linear-gradient(180deg, rgba(89, 89, 89, 0.7) 0%, rgba(33, 33, 33, 0.7) 49.99%, rgba(5, 5, 5, 0.7) 50%, rgba(38, 38, 38, 0.7) 100%);
  }

.button {
  font-family: 'Quicksand', sans-serif;
	width: 75px;
	height: 40px;
	border: none;
	background: linear-gradient(180deg, rgba(99, 102, 104, 0.9) 0%, rgba(69, 71, 71, 0.9) 50.52%, rgba(52, 52, 52, 0.9) 53.12%, rgba(0, 0, 0, 0.9) 100%);
	transition: 1s;
	color: white;
	border-radius: 5px;
	margin-left: 10px;
	margin-top: 0px;
	outline: none;
	font-size: 15px;
	text-align: center;
}

.button:hover {
  font-family: 'Quicksand', sans-serif;
	opacity: 0.5;
	background: lightgray;
	transform: scale(1.15);
	transition: 1s;
	box-shadow: 10px 10px 25px #333333;
}

h1 {
  margin: 0 0 5px;
  font-weight: normal;
  font-family: "ExtraLight";
  font-style: normal;
  font-size: 36px;
  line-height: 125%;
  text-transform: lowercase;

  filter: drop-shadow(0px -2px 1px rgba(0, 0, 0, 0.25));
  background: linear-gradient(180deg, #878C87 0%, #D3D4D3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
  
p, li {
  text-shadow: 0px -2px 1px rgba(0, 0, 0, 0.25);
  color: #E6E6E6;
  font-family: Regular;
  font-size: 20px;
  margin: 0;
}
  
html,body {
    font-family: 'Quicksand', sans-serif;
    background-color: aliceblue;
}

header {
    padding: 10px 2%;
    justify-content: space-between;
    background: linear-gradient(180deg, rgba(99, 102, 104, 0.9) 0%, rgba(69, 71, 71, 0.9) 50.52%, rgba(52, 52, 52, 0.9) 53.12%, rgba(0, 0, 0, 0.9) 100%);
    position: sticky;
    top: 0;
    opacity: 0.8;
    z-index: 10;
    transition: 1s;
}
  
.events {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    padding: 10px 2%;
    background: var(--glassFx), var(--glassColor), var(--glassBase);
    background-blend-mode: overlay, normal, normal;
    box-shadow: 20px 20px 50px black;
    backdrop-filter: blur(2px);
}

.container {
    border-radius: 10px;
    width: 60%;
    text-align: center;
    color: #fafafa;
    padding: 20px;
    background: linear-gradient(180deg, rgba(83, 85, 87, 0.9) 0%, rgba(14, 15, 15, 0.9) 100%);
    box-shadow: 20px 20px 50px black;
}
  
.discontinued {
    font-size: 20px;
    color: red;
}

.pcontainer {
    border-radius: 10px;
    background-color: #f1f1f1;
    width: 200px;
    text-align: center;
    color: #444444;
    box-shadow: 10px 10px 25px #333333;
    padding: 20px;
}

.pcontainer img {
    width: 70px;
}

.sticky {
    position: fixed;
    top: 0px;
    width: 97.6%
}

.sticky + body {
    padding-top: 102px;
}

footer {
    background-color: #616161;
    text-align: center;
    color: #f1f1f1;
    padding: 10px;
}

header:hover {
    padding: 10px 2%;
    justify-content: space-between;
    background: linear-gradient(180deg, rgba(99, 102, 104, 0.9) 0%, rgba(52, 52, 52, 0.9) 53.12%, rgba(52, 52, 52, 0.9) 53.12%, rgba(0, 0, 0, 0.9) 100%);
    box-shadow: 20px 20px 50px black;
    transform: scale(1.01);
    position: sticky;
    top: 0;
    opacity: 0.8;
    z-index: 10;
    transition: 1s;
}

.card {
  background: url("/images/logo-white.png") no-repeat;
  background-size: cover;
  max-width: 20px;
  margin: auto;
  height:	20px;
  padding: 20px;
  position: relative;
  color: #000000;
  transition: transform 0.1s ease;
  transform-style: preserve-3d;
  will-change: transform;
  font-family: 'Quicksand', sans-serif;
}

/* Slight parallax effect on hover */
.card:hover .content {
  transform: translateZ(12px);
}
 
/* Darker layer to make text more readable */
.card::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.content {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}