2023-12-08 06:21:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
body {
|
2023-12-10 20:34:29 +00:00
|
|
|
background: linear-gradient(to bottom, #FFDAB9, #FFFACD); /* gradient from light peach to cream */
|
2023-12-08 06:21:25 +00:00
|
|
|
color: #006400; /* dark green */
|
2023-12-10 20:34:29 +00:00
|
|
|
font-family: Kalnia, 'Times New Roman', Times, serif;
|
2023-12-08 06:21:25 +00:00
|
|
|
line-height: 1.6;
|
|
|
|
}
|
|
|
|
|
|
|
|
.container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 20px;
|
|
|
|
max-width: 800px;
|
|
|
|
margin: 0 auto;
|
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.news {
|
|
|
|
height:222px;
|
|
|
|
width:222px;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1, h2 {
|
2023-12-10 20:34:29 +00:00
|
|
|
color: #333333; /* dark grey */
|
2023-12-08 06:21:25 +00:00
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
2023-12-10 20:34:29 +00:00
|
|
|
color: #000080; /* dark blue */
|
2023-12-08 06:21:25 +00:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
2023-12-10 20:34:29 +00:00
|
|
|
color: #800000; /* maroon */
|
2023-12-08 06:21:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.fab {
|
2023-12-10 20:34:29 +00:00
|
|
|
color: #000080; /* dark blue */
|
2023-12-08 06:21:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.card img {
|
|
|
|
width: 40%; /* adjust as needed */
|
|
|
|
height: auto; /* maintain aspect ratio */
|
|
|
|
display: block; /* center the image */
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.container {
|
|
|
|
display: flex;
|
|
|
|
padding: 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header, .topnav {
|
|
|
|
flex: 1;
|
|
|
|
|
2023-12-10 20:34:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#myBtn {
|
|
|
|
display: none;
|
|
|
|
position: fixed;
|
|
|
|
bottom: 20px;
|
|
|
|
right: 30px;
|
|
|
|
z-index: 99;
|
|
|
|
border: none;
|
|
|
|
outline: none;
|
|
|
|
background-color: red;
|
|
|
|
color: white;
|
|
|
|
cursor: pointer;
|
|
|
|
padding: 15px;
|
|
|
|
border-radius: 10px;
|
|
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#myBtn:hover {
|
|
|
|
background-color: #555;
|
2023-12-08 06:21:25 +00:00
|
|
|
}
|