/* ===========================
   CSS Reset & Base Styles
   =========================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  height: 100%;
  overflow: hidden;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  height: 100%;
  overflow: hidden;
}

/* ===========================
   Typography
   =========================== */

h1 {
  font-size: 1.4rem;
  margin-top: 20px;
  text-align: center;
}

/* ===========================
   Images & Media
   =========================== */

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

/* ===========================
   Layout
   =========================== */

/* ===========================
   Logo Container
   =========================== */

.main {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.logo-container {
  padding: 0 20px;
}

.logo {
  max-width: 300px;
  width: 100%;
}
