@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;
  color: #FFF;
}

.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: grid;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  height: 100%;
  background: #000;
  justify-content: center;
  overflow: hidden;
}

#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;
}

.section {
  margin: 5rem;
  max-width: 1400px;
  z-index: 9999;
}

.section-title {
  font-size: 24px;
  margin: 1rem;
  z-index: 6666;
}

.section-text {
  font-size: 16px;
  margin: 0 1rem;
  z-index: 6666;
}

.button {
  margin: 1rem;
  padding: 1rem;
  font-size: 16px;
  background: #111;
  border: none;
  border-radius: 20px;
  outline: none;
  transition: .7s;
  cursor: pointer;
  width: 65px;
  appearance: none;
  text-align: center;
}

.button:hover {
  background: #222;
}