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

html {
  font-size: 62.5%;
}

body {
  font-family: "Red Hat Display", sans-serif;
  line-height: 1;
  font-weight: 400;

  background: url(./../images/pattern-background-desktop.svg) no-repeat, var(--blue-100);
  background-size: contain;

  width: 100%;
  height: 100vh;

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

  color: #000;
}


@media (max-width:375px) {
  body {
    background: url(./../images/pattern-background-mobile.svg) no-repeat, var(--blue-100);
  }
}

.container {
  padding: 2rem;
}

/* a attribute styling */
a {
  color: var(--green-500, #007bff);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;


}

a:hover,
a:focus {
  color: var(--green-700, #0056b3);
  text-decoration: underline;
}

a:visited {
  color: #5a5a5a;
}