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

body {
  background-color: #FEFEFE;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 80px 40px 60px;
  width: 100%;
  max-width: 720px;
}

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

nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 60px;
}

nav a {
  display: inline-block;
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.15s ease;
}

nav a:hover {
  opacity: 0.5;
}

nav a img {
  height: 22px;
  width: auto;
  max-width: 100%;
}

nav a img[alt="Production"] {
  height: 25px;
}

footer {
  width: 100%;
  max-width: 720px;
  padding: 40px 40px 60px;
  display: flex;
  gap: 18px;
  align-items: flex-end;
}


footer a {
  display: inline-block;
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.15s ease;
}

footer a:hover {
  opacity: 0.5;
}

footer a img {
  height: 20px;
  width: auto;
  max-width: 100%;
}

.page-heading {
  max-width: 300px;
  height: auto;
}

.page-heading[alt="Workshops"] {
  max-width: 150px;
}


.subheading[alt="Check your inbox for your access link."] {
  max-width: 460px;
}

.subheading {
  max-width: 320px;
  height: auto;
  margin-top: 12px;
}

.subheading[alt="Register your interest"] {
  max-width: 269px;
}

.breakdown-item {
  display: inline-block;
  text-decoration: none;
  margin-top: 40px;
  opacity: 1;
  transition: opacity 0.15s ease;
}

.breakdown-item:hover {
  opacity: 0.5;
}

.breakdown-item img {
  height: 50px;
  width: auto;
  max-width: 100%;
}

.kit-form {
  margin-top: 40px;
  width: 100%;
  max-width: 400px;
}

.kit-form input[type="email"] {
  background: transparent;
  border: none;
  border-bottom: 1px solid #333;
  outline: none;
  font-size: 14px;
  padding: 6px 0;
  width: 260px;
  color: #333;
  font-family: 'Courier New', Courier, monospace;
}

.kit-form button {
  background: transparent;
  border: 1px solid #333;
  padding: 6px 16px;
  font-size: 13px;
  font-family: 'Courier New', Courier, monospace;
  cursor: pointer;
  margin-left: 8px;
  color: #333;
  transition: background 0.15s ease, color 0.15s ease;
}

.kit-form button:hover {
  background: #333;
  color: #FEFEFE;
}

@media (max-width: 600px) {
  main {
    padding: 60px 24px 40px;
  }

  footer {
    padding: 30px 24px 48px;
  }

  .kit-form button {
    display: block;
    margin-left: 0;
    margin-top: 10px;
  }
}
