2024-06-18 19:42:14 +02:00
|
|
|
/* Reset and global styles */
|
2024-06-18 19:16:01 +02:00
|
|
|
body {
|
2024-06-18 19:42:14 +02:00
|
|
|
box-sizing: border-box;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
|
|
|
|
transition: 0.5s;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Body styles */
|
|
|
|
body {
|
2024-06-18 19:16:01 +02:00
|
|
|
background: #f5f5f5 url("assets/background.jpg") no-repeat center fixed;
|
2024-06-18 19:42:14 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
min-height: 100vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Header styles */
|
|
|
|
header {
|
|
|
|
background-color: rgba(0, 0, 0, 0.7);
|
|
|
|
padding: 10px;
|
|
|
|
width: 100%;
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: 1000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-content {
|
2024-06-18 19:16:01 +02:00
|
|
|
max-width: 1200px;
|
|
|
|
margin: 0 auto;
|
2024-06-18 19:42:14 +02:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.project-name {
|
|
|
|
color: white;
|
|
|
|
font-size: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.burger-menu {
|
|
|
|
background: none;
|
|
|
|
border: none;
|
|
|
|
color: white;
|
|
|
|
font-size: 1.5em;
|
|
|
|
cursor: pointer;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu {
|
|
|
|
list-style: none;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-around;
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
header li {
|
|
|
|
margin: 0 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
header a {
|
|
|
|
color: white;
|
|
|
|
text-decoration: none;
|
|
|
|
padding: 10px;
|
|
|
|
border-radius: 5px;
|
|
|
|
transition: background-color 0.3s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
header a:hover {
|
|
|
|
background-color: rgba(255, 255, 255, 0.2);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Article styles */
|
|
|
|
article {
|
2024-06-18 19:16:01 +02:00
|
|
|
margin-top: 140px;
|
|
|
|
padding: 30px;
|
2024-06-18 19:42:14 +02:00
|
|
|
width: 90%;
|
|
|
|
max-width: 800px;
|
|
|
|
background: rgba(255, 255, 255, 0.9);
|
|
|
|
border-radius: 10px;
|
|
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2024-06-18 19:16:01 +02:00
|
|
|
h1, p {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
2024-06-18 19:42:14 +02:00
|
|
|
h1 {
|
|
|
|
color: #333;
|
2024-06-18 19:16:01 +02:00
|
|
|
font-size: 1.8em;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2{
|
|
|
|
margin-bottom: -1em;
|
2024-06-18 19:42:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
color: #666;
|
|
|
|
line-height: 1.6;
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
max-width: 100%;
|
|
|
|
height: auto;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
2024-06-18 19:16:01 +02:00
|
|
|
padding: 12px 24px;
|
|
|
|
margin: 0;
|
2024-06-18 19:42:14 +02:00
|
|
|
border: none;
|
|
|
|
background-color: #333;
|
|
|
|
color: white;
|
|
|
|
border-radius: 5px;
|
|
|
|
cursor: pointer;
|
|
|
|
transition: background-color 0.3s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
button:hover {
|
|
|
|
background-color: #555;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Cards section styles */
|
|
|
|
section .cards {
|
|
|
|
display: grid;
|
2024-06-18 19:16:01 +02:00
|
|
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
2024-06-18 19:42:14 +02:00
|
|
|
gap: 20px;
|
|
|
|
margin-top: 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
section .card {
|
|
|
|
text-align: center;
|
|
|
|
list-style: none;
|
|
|
|
background-color: #fff;
|
|
|
|
padding: 20px;
|
|
|
|
border-radius: 10px;
|
|
|
|
box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
|
|
|
|
text-decoration: none;
|
|
|
|
color: #333;
|
|
|
|
transition: transform 0.2s, box-shadow 0.2s;
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
section .card:hover {
|
|
|
|
transform: translateY(-10px);
|
|
|
|
box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
|
|
|
|
}
|
|
|
|
|
|
|
|
section .card img {
|
2024-06-18 19:16:01 +02:00
|
|
|
height: 64px;
|
|
|
|
width: 64px;
|
2024-06-18 19:42:14 +02:00
|
|
|
object-fit: cover;
|
|
|
|
border-radius: 5px;
|
2024-06-18 19:16:01 +02:00
|
|
|
margin: 0 auto 10px;
|
2024-06-18 19:42:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
section .card h3 {
|
|
|
|
margin: 10px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
section .card p {
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Mobile Styles */
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
.burger-menu {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu {
|
|
|
|
display: none;
|
|
|
|
flex-direction: column;
|
|
|
|
background-color: rgba(0, 0, 0, 0.7);
|
|
|
|
position: absolute;
|
2024-06-18 19:16:01 +02:00
|
|
|
top: 100%;
|
2024-06-18 19:42:14 +02:00
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
z-index: 999;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu.active {
|
|
|
|
display: flex;
|
|
|
|
}
|
2024-06-18 19:16:01 +02:00
|
|
|
|
2024-06-18 19:42:14 +02:00
|
|
|
header {
|
2024-06-18 19:16:01 +02:00
|
|
|
padding: 8px; /* Adjusted padding */
|
2024-06-18 19:42:14 +02:00
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-content {
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.project-name {
|
|
|
|
font-size: 1.2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
header li {
|
|
|
|
margin: 0;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
header a {
|
|
|
|
padding: 10px;
|
|
|
|
width: 100%;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
article {
|
2024-06-18 19:16:01 +02:00
|
|
|
margin-top: 180px; /* Adjusted margin-top */
|
|
|
|
padding: 20px; /* Adjusted padding */
|
2024-06-18 19:42:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
section .card {
|
2024-06-18 19:16:01 +02:00
|
|
|
padding: 12px; /* Adjusted padding */
|
2024-06-18 19:42:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
section .card img {
|
2024-06-18 19:16:01 +02:00
|
|
|
height: 60px; /* Adjusted height */
|
|
|
|
width: 60px; /* Adjusted width */
|
|
|
|
border-radius: 8px; /* Adjusted border-radius */
|
2024-06-18 19:42:14 +02:00
|
|
|
}
|
|
|
|
}
|