Spaces:
Sleeping
Sleeping
File size: 929 Bytes
b0dd51d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
*{
font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
color: #171717;
background-color: antiquewhite;
}
header {
text-align: center;
}
.grid-container {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
.card {
border: 3px solid #f6a503;
border-radius: 8px;
overflow: hidden;
}
.card img {
width: 100%;
height: 600px;
display: block;
}
.card-content {
padding: 20px;
}
.card-content h2 {
margin-top: 0;
}
.card-content h4 {
margin-bottom: 10px;
}
.card-content button {
background-color: #f6a503;
color: #000000;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.card-content button:hover {
background-color: #ffffff;
}
|