:root {
  --bg: #F5F5F5;
  --text: #777777;
  --accent-red: #ff3b3b;
  --accent-blue: #00a8ff;
  --accent-yellow: #ffe000;
  --accent-green: #00c48c;
  --accent-hover: #4444;
  --link-hover: var(--accent-hover);
}

body {
  margin: 0;
  padding: 0;
  font-family: "Century Gothic", sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

nav {
  background-color: var(--bg);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 1.5rem 1.5rem;
  border-bottom: 1.5px solid #ddd;
}

nav h1 {
  font-family: "Century Gothic", sans-serif;
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 2.5rem 0 0;
}

nav h1 a {
  font-family: "Century Gothic", sans-serif;
  font-size: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

nav ul {
  list-style: none;
  align-items: center;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0rem;
}

nav a, li {
  font-size: .8rem;
  font-family: "Century Gothic", sans-serif;
  text-decoration: none;
  color: var(--text);
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

nav a:hover{
  color: var(--link-hover);
}

section {
  padding: 4rem 2rem;
  max-width: 800px;
  margin: auto;
}

h2 {
  font-family: "Century Gothic", sans-serif;
  font-size: 1.5rem;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  margin-bottom: 1.5rem;
  color: var(--text);
}

p {
  font-family: "Century Gothic", sans-serif;
  font-size: 1rem;
  margin-bottom: 1rem;
}

p a{
  text-decoration: none;
  font-weight: bold;
  color: var(--text);
  transition: color 0.3s ease;
}

p a:hover {
  color: var(--link-hover);
}

.art-gallery {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.art-gallery img {
  width: 100%;
  max-width: 600px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.download-btn {
  display: inline-block;
  padding: 0.25rem .75rem;
  font-family: "Century Gothic", sans-serif;
  font-size: 1rem;
  background-color: var(--bg);
  color: var(--text);
  text-decoration: none;
  border: none;
  border-radius: 2px;
  margin-top: 1rem;
  transition: color 0.3s ease;
}

.download-btn:hover {
  color: var(--link-hover);
}
