jatinkanduri's picture
Deploy screw detection app
b682363
/* src/styles/Home.css */
.home {
background-color: #0F172A;
color: #F8FAFC;
font-family: 'Inter', sans-serif;
padding-bottom: 80px;
}
.hero {
display: flex;
justify-content: space-between;
align-items: center;
padding: 80px;
gap: 40px;
background-color: #1E293B;
}
.hero-content {
max-width: 600px;
}
.hero-title {
font-size: 48px;
font-weight: bold;
margin-bottom: 20px;
}
.hero-subtitle {
font-size: 18px;
color: #94A3B8;
margin-bottom: 30px;
}
.get-started-btn {
background-color: #22C55E;
color: white;
padding: 12px 28px;
font-size: 16px;
border: none;
border-radius: 10px;
text-decoration: none;
}
.get-started-btn:hover {
background-color: #16A34A;
}
.features {
padding: 60px 80px;
background-color: #0F172A;
}
.section-title {
font-size: 32px;
margin-bottom: 40px;
text-align: center;
}
.feature-grid {
display: flex;
flex-wrap: wrap;
gap: 32px;
justify-content: center;
}
.feature-card {
background-color: #1F2937;
padding: 24px;
border-radius: 16px;
width: 300px;
box-shadow: 0 0 20px rgba(0, 255, 160, 0.05);
}
.feature-card h3 {
font-size: 20px;
margin-bottom: 12px;
}
.feature-card p {
font-size: 16px;
color: #CBD5E1;
}