:root {
  --bg-color: rgb(55, 57, 69);
  --text-color: rgb(220, 221, 225);
  --accent-color: rgb(58, 122, 242);
  --border-color: rgb(100, 103, 115);
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: 'Raleway', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 3rem 1.5rem;
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  width: 100%;
}

h1 {
  font-family: "Poiret One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4em;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

p.description {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: var(--text-color);
  opacity: 0.9;
}

.contact-wrapper {
  margin-top: 0.5rem;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-color);
  text-decoration: none;
  padding: 0.85rem 1.75rem;
  border: 1px solid var(--border-color);
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.05);
  transition: all 0.25s ease;
}

.contact-email:hover {
  background-color: var(--accent-color);
  color: #ffffff;
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(58, 122, 242, 0.35);
}

footer {
  font-size: 0.875rem;
  color: var(--text-color);
  opacity: 0.6;
  letter-spacing: 0.05em;
  padding-top: 2rem;
}

/* Classes replacing inline element styles */
.site-logo-picture {
  display: block;
  margin-bottom: 1.5rem;
}

.site-logo-img {
  width: 128px;
  height: 128px;
  display: block;
  margin: 0 auto;
}

