@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

html, body {
  height: 100%;
  margin: 0;
}

body {
  background: linear-gradient(0deg, #530003, #000000);
  transition: background 0.1s linear;
}

.page {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
}

.title {
  font-family: 'Rubik', sans-serif !important;
  color: white;
  user-select: none;
  font-size: 40px;
  font-weight: 500;
  margin: 25px;
  text-shadow: rgba(0, 0, 0, 0.6) -1px -1px 3px, 
               rgba(0, 0, 0, 0.6) 1px -1px 3px,
               rgba(0, 0, 0, 0.6) -1px 1px 3px,
               rgba(0, 0, 0, 0.6) 1px 1px 3px,
               rgba(0, 0, 0, 0.4) 0 0 6px;
}

.install {
    font-family: 'Rubik', sans-serif !important;
    width: 150px;
    text-align: center;
    color: white;
    user-select: none;
    box-shadow: 0px 0px 20px 0px black;
    padding: 20px;
    border-radius: 20px;
    transition: background-color 0.2s ease-in;
    background-color: #530003;
    text-decoration: none;
}

.install:hover {
  background-color: #1a0001;
  cursor: pointer;
}
