diff --git a/styles.css b/styles.css
index e69de29..8591f70 100644
--- a/styles.css
+++ b/styles.css
@@ -0,0 +1,21 @@
+body {
+ background-image: url(assets/bg_5.gif);
+ background-repeat: no-repeat;
+ background-size: cover;
+
+}
+
+@media screen and (max-width: 1280px) {
+ body {
+ background-attachment: fixed;
+ }
+ }
+
+ .card {
+ background-color: rgba(255, 255, 255, 0.1); /* Makes the background transparent */
+ transition: background-color 0.3s ease; /* Adds a smooth transition effect */
+ }
+
+ .card:hover {
+ background-color: rgba(255, 255, 255, 0.5); /* Changes the background color on hover */
+ }
\ No newline at end of file