* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 16px;
}

body {
  font-family: 'Inter';

  width: 100%;
  min-height: 100vh;

  background-color: #d9d9d9;
  background-image: url('../assets/background.png');
  background-size: cover;

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

body .container {
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 3rem;
}

body .container img {
  width: 100%;
}

body .links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 1rem;
  width: 100%;
  max-width: 460px;
}

body .links .link {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #525252;
  width: 100%;
  padding: 1rem;
  border-radius: 4px;
  text-decoration: none;
  transition: transform 200ms ease-in-out;
}

body .links .link span {
  font-family: 'Inter';
  font-weight: bold;
  color: #fff;
  text-align: center;
}

body .links .link:hover {
  transform: translateY(-3px);
  background-color: #4d4d4d;
}
