/* Base styles */
html {
  height: 100%;
  width: 100%;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  background-color: #F5F5F5;
  color: #333333;
}

/* Typography */
h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: left;
}

h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: left;
}

/* Layout */
.container {
  max-width: 42rem;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Card styles */
.card {
  margin-bottom: 2rem;
}

.card:last-child {
  margin-bottom: 0;
}

.card-content {
  padding: 1.5rem;
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* List styles */
li {
  margin-bottom: 7.5px;
}

.list-disc {
  list-style-type: disc;
  padding-left: 1.25rem;
}

/* Text utilities */
.text-gray-600 {
  color: #4b5563;
  text-align: left;
}

.text-blue-600 {
  color: #2563eb;
}

/* Link styles */
.hover\:underline:hover {
  text-decoration: underline;
}

/* Section-specific styles */
.accelerators {
  text-align: center;
  padding-bottom: 50px;
  padding-top: 25px;
}

.accelerators a {
  margin-top: 25px;
  margin-bottom: -7px;
  display: block;
}

.homepage {
  text-align: center;
}

.homepage a {
  margin-bottom: 10px;
  display: block;
}

.resources {
  text-align: center;
}

.resources a {
  margin-top: 25px;
  margin-bottom: -7px;
  display: block;
}

#intro {
  padding-right: 300px;
  line-height: 1.5;
}

.homebutton {
  text-align: center;
  margin-top: 50px;
  padding-bottom: 50px;
} 