* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: none;
}

body {
  height: 100dvh;
  background: url("bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  font-family: "IBM Plex Sans", sans-serif;
  padding: 0 16px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

img {
  height: 128px;
  width: 128px;
}

h1 {
  color: hsla(220, 19%, 13%, 1);
  font-size: 30px;
  font-weight: 700;
  max-width: 400px;
  text-align: center;
  line-height: 1.2;
}

p {
  color: hsla(220, 20%, 42%, 1);
  margin-top: 8px;
  text-align: center;
  line-height: 1.6;
  font-weight: 500;
}

.buttons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  align-self: stretch;
  justify-content: center;
}

a {
  border-radius: 12px;
  max-width: 190px;
  width: 100%;
  text-align: center;
  display: flex;
  gap: 8px;
  align-items: center;
  height: 50px;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.light {
  color: hsla(220, 19%, 13%, 1);
  padding-top: 1px;
  outline-offset: -1px;
  background: white;
  border: 1px solid hsla(228, 20%, 95%, 1);
  border-bottom: 2px solid hsla(228, 20%, 95%, 1);
}

.primary {
  background: hsla(218, 100%, 48%, 1);
  color: white;
  border: 1px solid hsla(219, 99%, 42%, 1);
  box-shadow: 0px 0px 0px 1px hsla(218, 100%, 55%, 1) inset;
}

a img {
  width: 20px;
  height: 20px;
}
