36275-vm/static/css/custom.css
2025-11-25 14:46:59 +00:00

50 lines
781 B
CSS

body {
font-family: 'Lato', sans-serif;
background-color: #F3F2EF;
color: #333333;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Roboto', sans-serif;
font-weight: 700;
}
.hero {
background: linear-gradient(to right, #0A66C2, #70B5F9);
color: white;
padding: 100px 0;
text-align: center;
}
.hero h1 {
font-size: 3.5rem;
}
.hero p {
font-size: 1.25rem;
margin-bottom: 30px;
}
.btn-primary {
background-color: #0A66C2;
border-color: #0A66C2;
}
.btn-primary:hover {
background-color: #004182;
border-color: #004182;
}
.btn-secondary {
background-color: #70B5F9;
border-color: #70B5F9;
}
.btn-secondary:hover {
background-color: #4a98d7;
border-color: #4a98d7;
}
.about-section {
padding: 60px 0;
}