diff --git a/GUI/src/Home.vue b/GUI/src/Home.vue index 3ec7485..91d5eb9 100644 --- a/GUI/src/Home.vue +++ b/GUI/src/Home.vue @@ -3,51 +3,106 @@ let buttons = [ { name: "Lokaler Multiplayer", icon: "mdi-account-switch", - color: "red" + color: "red", }, { name: "Lokal gegen Bot", icon: "mdi-robot-angry-outline", - color: "green" + color: "green", }, { name: "Online Multiplayer", icon: "mdi-web", - color: "blue" - } + color: "blue", + }, ] \ No newline at end of file + +.title-section { + display: flex; + flex-direction: column; + align-items: center; +} + +.main-title { + font-family: "Roboto", sans-serif; + font-size: 3rem; + font-weight: 300; + letter-spacing: 2px; + line-height: 1.2; + text-transform: uppercase; +} + +.highlight-title { + font-weight: 700; + font-size: 3.5rem; + color: #fdd835; + letter-spacing: 4px; +} + +.button-section { + display: flex; + flex-direction: column; + align-items: center; + gap: 16px; + width: 100%; +} + +.mode-btn { + font-family: "Roboto", sans-serif; + font-weight: 500; + letter-spacing: 1px; + text-transform: none; + transition: transform 0.2s ease, box-shadow 0.2s ease; +} + +.mode-btn:hover { + transform: scale(1.05); +} + +.btn-label { + font-size: 1.05rem; +} +