@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Source Sans 3', 'Source Code Pro', sans-serif;
}

.fixedBackground {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: rgb(37, 36, 35);
  z-index: -1;
}

.fixedBackground::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgb(106, 106, 106), rgb(45, 45, 45));
  clip-path: circle(30% at right 70%);
}

.fixedBackground::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(#3c3c3c, #131313);
  clip-path: circle(60% at 10% 10%);
}


.container {
    position: sticky;
    top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
}

.company {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 160px;
    overflow: hidden;
    z-index: 2;
}

@media screen and (min-width: 780px) {
    h2 {
        font-size: 5rem;
        color: white;
        text-align: center;
        z-index: 9;
    }
    h2 span {
        font-size: 4.7rem;
    }
}

@media screen and (max-width: 779px) {
    h2 {
        font-size: 2.2rem;
        color: white;
        text-align: center;
        z-index: 9;
    }
    h2 span {
        font-size: 2rem;
    }
}

.box {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgb(102, 255, 188);
    box-shadow: 5px 5px 20px 5px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.neontext {
    text-shadow:
    0 0 4px #fff,
    0 0 11px #fff,
    0 0 19px #fff,
    0 0 40px #0fa,
    0 0 80px #0fa,
    0 0 90px #0fa,
    0 0 100px #0fa;
}


section {
  position: relative;
  display: none;
  height: 100vh;
  width: 100%;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.card {
  width: 360px;
  height: 600px;
  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.0);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(5px);
  z-index: 99;
}

.card .content {
  position: absolute;
  padding: 20px;
  text-align: center;
}

.card:hover .content {
  transform: translateY(0px);
  opacity: 1;
}

.card .content h2 {
  position: absolute;
  top: -80px;
  right: 30px;
  font-size: 8em;
  color: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.card .content h3 {
  font-size: 1.8em;
  color: #fff;
}
.card .content p {
  font-size: 1em;
  color: #fff;
  font-weight: 300;
  text-align: center;
}

.card .content a {
  display: inline-block;
  padding: 8px 20px;
  margin-top: 50px;
  background-color: #fff;
  color: #000;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}