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

/* ================================
   FONTS
================================ */
@font-face {
  font-family: 'Tanker';
  src: url('assets/fonts/Tanker-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ================================
   BASE
================================ */
html, body {
  height: 100%;
}

body {
  background-color: #f3f3f3;
  font-family: 'Tanker', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #111;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ================================
   LAYOUT
================================ */
.container {
  width: 100%;
  padding: 2rem;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
}

/* ================================
   LOGO
================================ */
.logo {
  width: clamp(220px, 28vw, 250px);
  height: auto;
}

/* ================================
   EMAIL
================================ */
.email {
  font-size: clamp(1.1rem, 1vw, 0.85rem);
  /*letter-spacing: -0.3px;*/
  text-decoration: none;
  color: #111;
  transition: opacity 0.3s ease;
}

.email:hover {
  opacity: 0.5;
}

/* ================================
   RESPONSIVE REFINEMENT
================================ */
@media (max-width: 480px) {
  .content {
    gap: 2rem;
  }

  .logo {
    width: 260px;
  }
}
