ResourcesVADEA members enjoy exclusive access to a range of professional development resources. Topics covered include:
Join today to access these resources and become a part of the VADEA community! |
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 2rem;
background-color: #f9f9f9;
}
h1 {
text-align: center;
margin-bottom: 1rem;
color: #333;
}
p.intro {
text-align: center;
max-width: 700px;
margin: 0 auto 2rem;
color: #555;
}
.grid {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 2rem;
}
.card {
flex: 0 1 calc(33.333% - 2rem);
background-color: #fff;
padding: 1.5rem;
border-radius: 12px;
box-shadow: 0 4px 10px rgba(0,0,0,0.05);
transition: transform 0.2s, box-shadow 0.2s;
text-decoration: none;
color: inherit;
display: block;
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.card h2 {
font-size: 1.2rem;
color: #222;
margin-bottom: 0.5rem;
}
.card p {
font-size: 0.95rem;
color: #555;
}
@media (max-width: 900px) {
.card {
flex: 0 1 calc(50% - 2rem);
}
}
@media (max-width: 600px) {
.card {
flex: 0 1 100%;
}
}