* {
  box-sizing: border-box;
}

*::selection {
  color: #fff;
  background-color: rgb(119, 86, 243);
}

html {
  font-family: "Public Sans", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 300;
  color: rgb(255, 255, 255);
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: rgb(22, 33, 67);
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
  position: relative;
}

.logo-container {
  height: 88px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}

.logo {
  display: block;
}

h1 {
  font-size: 36px;
  font-weight: 300;
  line-height: 1.8;
  margin: 0px 0px 3px;
  color: rgb(255, 255, 255);
}

p {
  font-size: 18px;
  font-weight: 300;
  margin: 0px 0px 46px;
  color: rgb(127, 126, 145);
}

.button {
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  height: 45px;
  width: 135px;
  color: rgb(255, 255, 255);
  text-decoration: none;
  background-color: rgb(119, 86, 243);
  border-radius: 5px;
  padding: 0px;
  outline: 0px;
  border: 0px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 150ms ease 0s;
}

.button:hover {
  color: rgb(255, 255, 255);
  background-color: rgb(147, 141, 245);
  border-color: rgb(147, 141, 245);
}

.button:focus {
  box-shadow: 0 0 0 1.5px rgba(255, 255, 255, 0.35);
}
