@import url('https://fonts.googleapis.com/css2?family=Play:wght@400;700&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Play", sans-serif;
  font-weight: 400;
}

h1,
h2, 
h3 {
  font-weight: 700;
}

a {
  text-decoration: none;
  color: var(--JaBuvo2);
}

a:visited {
  color: var(--JaBuvo2);
}

main {
  width: 90%;
  margin: auto;
}

main section {
  display: inline-block;
  width: 100%;
  min-height: 50px;
  margin: 5px 0px;
  border-radius: 5px;
}

.home-intro {
  --c: var(--JaBuvo2); /* border kleur */
  --b: 3px; /* border dikte */
  --g: -15px;  /* gap */

  position: relative;
  padding: 25px;
  width: 70%;

  color: var(--JaBuvo2);
  background: #fff;
  border-radius: 20px;
}

.home-intro::before {
  content: "";
  position: absolute;
  inset: calc(-1 * (var(--b) + var(--g)));
  border-radius: calc(20px + var(--b) + var(--g));

  --_g: #0000 25%, var(--c) 0;

  background:
    conic-gradient(from 180deg at top var(--b) right var(--b), var(--_g))
      var(--_i, 200%) 0 / 200% var(--_i, var(--b)) no-repeat,
    conic-gradient(at bottom var(--b) left var(--b), var(--_g))
      0 var(--_i, 200%) / var(--_i, var(--b)) 200% no-repeat;

  transition: .3s, background-position .3s .3s;
  pointer-events: none;
}

.home-intro:hover::before {
  --_i: 100%;
  transition: .3s, background-size .3s .3s;
}

.home-cards {
  margin-top: 400px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.social-cards {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  filter: brightness(80%) blur(2px) opacity(0.3);
}

.countdown {
  width: 40%;
  height: 140px;
  font-size: larger;
  background-color: #FFFFFF;
  color: var(--JaBuvo2);
  backdrop-filter: blur(8px);
  padding: 10px;
  position: absolute;
  top: 530px;
  left: 30%;
  display: inline-block;
  text-align: center;
}

.countdownIntro {
  font-size: larger;
  font-weight: bold;
}

#aftellen {
  text-align: center;
}

#countdown {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 40%;
  border-style: solid none;
  border-color: var(--JaBuvo2);
  border-width: 1px 0;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
}

#countdownSection {
  position: absolute; 
  width: 50%; 
  height: 20vh;
  top: 63vh; 
  left: 25%; 
  background-color: rgba(255, 255, 255, 0.70); 
  backdrop-filter: blur(8px); 
}

.upper-intro table,
.upper-intro td,
.upper-intro th {
  border: 1px solid;
  padding: 10px;
}

.upper-intro th {
  background-color: rgba(255, 255, 255, 0.30);
  font-weight: bold;
}

.upper-intro table {
  width: calc(100% - 50px);
  border-collapse: collapse;
  margin: 25px;
  text-align: center;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.70);
  color: var(--JaBuvo2);
}