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

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: white;
  min-height: 100vh;
}

nav {
  background-color: #333;
  padding: 15px 0;
  margin-bottom: 20px;
}

nav ul {
  list-style: none;
  text-align: center;
}

nav ul li {
  display: inline;
  margin: 0 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

nav ul li a:hover {
  text-decoration: underline;
}

.home-content {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
}

.upvil-logo {
  font-family: 'Varela Round', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-size: 144px;
  font-weight: 700;
  color: white;
  text-align: center;
  text-shadow: 
    /* Layer 1: Black thick outline (left side) */
    -6px 0px 0px #000,
    -6px 2px 0px #000,
    -6px 4px 0px #000,
    -5px 1px 0px #000,
    -5px 3px 0px #000,
    -4px 0px 0px #000,
    -4px 2px 0px #000,
    -4px 4px 0px #000,
    /* Layer 2: Black thin outline (right side) */
    2px 0px 0px #000,
    2px 2px 0px #000,
    2px -2px 0px #000,
    0px 2px 0px #000,
    0px -2px 0px #000,
    -2px 0px 0px #000,
    -2px 2px 0px #000,
    -2px -2px 0px #000,
    /* Layer 3: Gray shadow (left down - behind everything) */
    -12px 6px 0px #666;
}

h1 {
  color: #2c3e50;
  margin-bottom: 20px;
}

h2 {
  color: #34495e;
  margin-top: 20px;
  margin-bottom: 10px;
}

p {
  margin-bottom: 15px;
}

.content {
  padding: 20px 0;
}
