diff --git a/src/css/custom.css b/src/css/custom.css
index d0776a0d..659210c2 100644
--- a/src/css/custom.css
+++ b/src/css/custom.css
@@ -34,20 +34,31 @@ html[data-theme='dark'] button {
color: #ffffff;
}
-/* Main page theme */
-.text_image_side_by_side
-{
- display:flex;
- align-items:justify;
+.sideBySide {
+ display: flex;
+ flex-wrap: wrap;
+ align-items: center;
+ justify-content: space-between;
+ gap: 16px; /* Add some spacing between items */
+ margin: 0 auto;
+ /* max-width: 1200px; */
+ padding: 0px;
+ text-align: justify;
}
-.text_image_side_by_side img
-{
- width:60%;
- float:right;
+
+.text {
+ flex: 2; /* Take up available space */
+ min-width: 350px; /* Prevent shrinking too much */
+}
+
+.image {
+ flex: 1; /* Take up available space */
+ min-width: 200px; /* Prevent shrinking too much */
+ text-align: center; /* Center the image horizontally */
}
-.text_image_side_by_side p
-{
- width:135%;
- text-align:justify;
- float: left;
+
+.image img {
+ max-width: 100%; /* Make the image responsive */
+ height: auto;
+ border-radius: 8px; /* Optional: Add rounded corners */
}
diff --git a/src/pages/index.md b/src/pages/index.md
index dfd87509..f560cd0e 100644
--- a/src/pages/index.md
+++ b/src/pages/index.md
@@ -5,20 +5,24 @@ lightModeImage="./img/mrs_f4f_large_light.png"
darkModeImage="./img/mrs_f4f_large_dark.png"
/>
-# MRS UAV System Documentation
+
MRS UAV System Documentation
-
+
+
-The MRS UAV System is an **open-source software framework** developed by the Multi-Robot Systems Group at Czech Technical University, designed to assist researchers in **advanced R&D in autonomous UAV systems**, from speed racing and decentralized swarming to GNSS-denied coordination of multi-UAV formations.
+The MRS UAV System is an **open-source software framework** developed by the Multi-Robot Systems Group at Czech Technical University in Prague, designed to assist researchers in **advanced R&D in autonomous UAV systems**, from speed racing and decentralized swarming to GNSS-denied coordination of multi-UAV formations.
+
-![UAV image](img/x500_real.jpg)
+
+ ![UAV image](img/x500_real.jpg)
+
will give you **context** and show you the **features** of our system.
-And don't forget to check out our to read about our latest updates.
+Don't forget to check out our to read about our latest updates.
**Note on versioning:** Older versions of the documentation are preserved, but not maintained anymore.
diff --git a/static/img/mrs_f4f_large_light.png b/static/img/mrs_f4f_large_light.png
index c3377432..046963fd 100644
Binary files a/static/img/mrs_f4f_large_light.png and b/static/img/mrs_f4f_large_light.png differ