61 lines
1.0 KiB
CSS
61 lines
1.0 KiB
CSS
body {
|
|
font-family: Arial, sans-serif;
|
|
margin: 0;
|
|
background-color: #a5b0bb;
|
|
color: #0c0ca9;
|
|
}
|
|
|
|
header {
|
|
background-color:rgb(40, 52, 179);
|
|
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
|
|
font-size: 30px;
|
|
color: #ded30c;
|
|
padding: 40px;
|
|
text-align: center;
|
|
text-shadow: 20px 15px 5px rgba(227, 231, 11, 0.3);
|
|
}
|
|
|
|
.container {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
gap: 40px;
|
|
padding: 20px;
|
|
}
|
|
|
|
.card {
|
|
background-color:rgb(186, 176, 3);
|
|
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
|
|
border-radius: 20px;
|
|
padding: 20px;
|
|
width: 300px;
|
|
box-shadow: 0 4px 8px rgba(154, 33, 33, 0.1);
|
|
transition: transform 0.3s ease;
|
|
|
|
}
|
|
|
|
.card:hover {
|
|
transform: scale(1.08);
|
|
}
|
|
|
|
h2 {
|
|
margin-top: 0;
|
|
color: #162dae;
|
|
text-align: center;
|
|
}
|
|
|
|
ul {
|
|
padding-left: 20px;
|
|
}
|
|
|
|
li {
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
.card {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|