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

html,
body {
  height: 100%;
}

.main-navbar {
  height: 50px;
  background-color: #eeeeee;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  color: rgb(41, 41, 41);
  border-bottom:1px solid rgb(160, 160, 160);
}

.nav-container {
  width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 10px 0;
}

.nav-item {
  display: flex;
  justify-content: center;
  text-align: center;
}

.nav-item-main a {
  color: rgb(41, 41, 41);
  text-decoration: none;
  font-size: 14px;
  padding: 0 10px;
}

.nav-item-main a:hover {
  text-decoration: underline;
  color: rgb(84, 126, 64);
}

.nav-item-main a:active {
  text-decoration: underline;
  color: rgb(84, 126, 64);
}

.footer {
  width: 100%;
  background-color: #eeeeee;
  color: rgb(145, 145, 145);
  text-align: left;
  font-size: 12px;
  padding: 20px 0;
  position: relative; /* Ei kiinteä vaan mukautuu sisällön mukaan */
  margin-top: auto;
  border-top:1px solid rgb(160, 160, 160);
}

.footer-content {
  width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  min-height: 100px;
}

.footer-column {
  width: 420px;
}

.footer img{
    height:15px;
}