@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,
body {
font-family: "Poppins", sans-serif;
}
body {
background-color: #ffffff;
-webkit-font-smoothing: antialiased;
}
.hide-scrollbar::-webkit-scrollbar {
display: none;
}
.hide-scrollbar {
-ms-overflow-style: none;
scrollbar-width: none;
} :root { --yellow-950: #2c2814;
--yellow-900: #4c4421;
--yellow-800: #6a6030;
--yellow-700: #968c54;
--yellow-600: #b2a451;
--yellow-500: #c5b86a;
--yellow-400: #d1c48c;
--yellow-300: #dbd1a4;
--yellow-200: #e2d9bd;
--yellow-100: #eee9d0;
--yellow-50: #f8f6ef; --green-950: #0f1e1d;
--green-900: #1e4a46;
--green-800: #2b6862;
--green-700: #558a85;
--green-600: #6fb0a8;
--green-500: #4db6ac;
--green-400: #96d4cd;
--green-300: #aee0dc;
--green-200: #c0e9e6;
--green-100: #d2edea;
--green-50: #f1f9f8;
} .scrollbar-hide::-webkit-scrollbar {
display: none;
}
.scrollbar-hide {
-ms-overflow-style: none;
scrollbar-width: none;
} .nav {
background-color: var(--green-50);
} .nav li a {
display: inline-flex;
align-items: center;
padding: 8px 14px;
border-radius: 4px;
color: var(--green-800);
text-decoration: none;
transition: background-color 0.2s ease, color 0.2s ease;
font-weight: 500;
font-size: 14px;
} .nav li a:hover {
background-color: var(--green-100);
color: var(--green-800);
} .nav li a i {
line-height: 1;
}  .title {
font-family: "Poppins", sans-serif;
font-weight: 600;
font-size: 48px;
color: var(--green-800);
} @media (max-width: 1024px) {
.title {
font-size: 40px;
}
} @media (max-width: 640px) {
.title {
font-size: 30px;
line-height: 1.3;
}
} p {
font-weight: 400;
font-size: 16px;
line-height: 170%;
color: black;
}
.btn {
background-color: var(--green-100);
color: var(--green-500);
font-weight: 500;
line-height: 170%;
font-size: 16px;
border-radius: 4px;
padding: 10px 12px 10px 12px;
}
.btn:hover {
color: #2b6862;
}
.battery {
width: 96px;
height: 240px;
opacity: 1;
border-top-right-radius: 16px;
border-bottom-right-radius: 16px;
background-color: var(--green-800);
} .fc-card {
width: 200px;
height: 200px;
border-radius: 8px;
overflow: hidden;
background: #f2f2f2;
flex: 0 0 auto;
}
.fc-card img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
@media (min-width: 768px) {
.fc-card {
width: 200px;
height: 200px;
}
}