@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body {
  background-color: #1B1B1B;
}

.logo--holder {
  display: flex;
  height: 100vh;
  width: 100vw;
  align-items: center;
  justify-content: center;
}

a.logo--link {
  display: flex;
  text-decoration: none;
  justify-content: center;
  max-width: 800px;
  padding: 50px;
}

img {
  display: block;
  width: 100%;
  height: auto;
}