diff --git a/main.go b/main.go index 1bfee6a..49e6681 100644 --- a/main.go +++ b/main.go @@ -9,8 +9,8 @@ func main() { // Define the directory where your HTML and CSS files are located http.Handle("/", http.FileServer(http.Dir("."))) - // Start the web server on port 8080 - port := 8369 + // Start the web server on specfied port + port := 10369 fmt.Printf("Server is running on http://localhost:%d\n", port) err := http.ListenAndServe(fmt.Sprintf(":%d", port), nil) if err != nil { diff --git a/styles.css b/styles.css index e2add20..a32c6e2 100644 --- a/styles.css +++ b/styles.css @@ -18,6 +18,15 @@ body { transform: translate(-50%, -50%); } + .center-text a { + color: #3391ff; /* Set your desired link color */ + text-decoration: none; /* Remove default underline */ + } + + .center-text a:hover { + text-decoration: underline; /* Add underline on hover */ + } + .link-text a { color: #3391ff; /* Set your desired link color */ text-decoration: none; /* Remove default underline */