@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

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

body {
  font-family: "Archivo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: "wdth" 100;

  /* font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; */
  background-color: #ffffff;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0.5em;
}

header {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}

.logo {
  height: 150px;
  width: 150px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

main {
  text-align: center;
  flex-grow: 1;
  align-content: center;
  max-width: 800px;
}

.title {
  font-size: 24pt;
  margin-bottom: 10px;
  color: #1a1a1a;
  font-style: italic;
}

.subtitle {
  font-size: 18pt;
  margin-bottom: 30px;
  color: #1a1a1a;
  font-style: italic;
}

.instructions {
  margin-bottom: 30px;
}

.instruction-intro {
  font-size: 14pt;
  margin-bottom: 15px;
  color: #444;
}

.instructions ol {
  list-style-position: inside; /* Keeps numbers aligned */
  text-align: left; /* Align list items left */
  display: inline-block; /* Center the block */
  margin-bottom: 20px;
  font-size: 14pt; /* Apply to list items */
  color: #444;
}

.instructions ol li {
  margin-bottom: 8px; /* Space between list items */
}

.instructions ol li a {
  color: #007bff; /* Standard link blue */
  text-decoration: none;
}

.instructions ol li a:hover {
  text-decoration: underline;
}

.insta-button {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.insta-button > img {
  width: 150px;
}

.insta-button:hover {
  transform: scale(1.05);
}

a {
  cursor: pointer;
}

footer {
  width: 100%;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

footer p {
  font-size: 9pt;
  color: #777;
}

footer a {
  color: #555;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
