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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  font-family: sans-serif;
  color: #1a1a1a;
}

.logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.logo-wrapper img {
  max-width: 300px;
  width: 100%;
  height: auto;
  display: block;
}

.tagline {
  margin-top: 1rem;
  text-align: center;
  font-size: 1.2rem;
  color: #333333;
}

::selection {
 color: #fff;
 background: #f7b032;
 }