.container {
  padding-top: 70px;
  padding-bottom: 70px;
}

.navbar {
  margin-bottom: 0;
  background-color: #2d2d30;
  border: 0;
  font-size: 11px !important;
  letter-spacing: 4px;
  opacity: 0.9;
}

/* Set color for all navbar links */
.navbar li a, .navbar .navbar-brand {
  color: #d5d5d5 !important;
}

/* Change navbar link color on hover */
.navbar-nav li a:hover {
  color: #fff !important;
}

/* Active link color */
.navbar-nav li.active a {
  color: #fff !important;
  background-color: #29292c !important;
}

.navbar-nav li a:hover, .navbar .navbar-brand:hover {
  color: red !important;
}
body {
  font: 20px "Montserrat", sans-serif;
  line-height: 1.8;
  color: black;
  background-color: #f2f2f2;
}

p {
  font-size: 20px;
}

/* Remove default list style */
div#seznam ul {
  list-style-type: none;
  padding: 0;  /* Optional: Remove padding for better alignment */
}

/* Link styles */
div#seznam ul li a {
  color: black;           /* Default link color */
  text-decoration: none;  /* Remove underline */
}

/* Link hover effect */
div#seznam ul li a:hover {
  color: red;            /* Change color to red on hover */
}

/* General link styles */
a {
  text-decoration: none;  /* Remove underline */
  color: black;           /* Default link color */
}

a:hover {
  text-decoration: none;  /* Ensure no underline on hover */
  color: red;            /* Change to red on hover */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body and main container setup */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Ensures the body takes full height */
}

/* Main content area */
.content {
  flex: 1; /* Allows content to grow and fill the space */
  padding: 20px; /* Optional: adds some padding */
}

/* Footer styles */
footer {
  background-color: #f1f1f13; /* Change to your desired background color */
  text-align: left; /* Align text to the left */
  padding: 10px; /* Adds padding around the footer content */
}