@import url(sames.css);

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: white;
  font-family: 'Roboto', sans-serif;
}

.SizeBig{
    font-size: 34px;
}

#enterBtn{
}

#bgVideo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

#overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: -1;
}

#intro {
  position: fixed;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(12px);
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease;
}

.intro-box {
  text-align: center;
}

.intro-box h1 {
  font-size: 40px;
  margin-bottom: 20px;
  letter-spacing: 4px;
}

.intro-box button {
  padding: 10px 30px;
  font-size: 18px;
  background: transparent;
  border: 1px solid white;
  color: white;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
}

.intro-box button:hover {
  background: white;
  color: black;
}