@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");

@font-face {
  font-family: 'Material Symbols Rounded';
  font-style: normal;
  font-weight: 100 700;
  src: url(https://fonts.gstatic.com/s/materialsymbolsrounded/v190/sykg-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190Fjzag.woff2) format('woff2');
}

* {
  font-family: "Montserrat", Segoe UI, -apple-system, BlinkMacSystemFont, Ubuntu, sans-serif;
  user-select: none;
  box-sizing:border-box;
}

.google-icons {
  font-family: 'Material Symbols Rounded';
  font-variation-settings:
  'FILL' 1,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}

html {
  width: 100%;
  height: 100%;
}

body {
  display: flex;
  background: #000;
  overflow: hidden;
  height: 100%;
}

#particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000;
  background-image: url("");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  z-index: 1;
}

.center {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.content {
  display: grid;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: auto;
}

h1 {
  font-size: 80px;
  color: #FFF;
  margin: 0;
}

.time-area {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  color: #FFF;
  font-size: 16px;
  margin: 1rem;
}

.discord-link {
  display: flex;
  background: #283fb9;
  padding: 0.5rem;
  border-radius: 15px;
  max-width: 200px;
  transition: .7s;
  gap: 0.5rem;
  align-items: center;
}

.discord-link:hover {
  transform: translateY(-8px);
  background: #7674fa;
}

.discord-link img {
  width: 16px;
  height: 16px;
}

.discord-link a {
  text-decoration: none;
  color: #FFF;
}