body {
    background-color:rgb(217, 242, 138);
    margin-left: 15%;
    margin-right: 15%;
    
}


table {
    border-collapse: collapse;
  }
  
  tr, td, th {
    border: 1px solid black;
    padding: 0.5rem;
    text-align: left;
    padding-right: 2rem;
  }



/*A-LINKS */


header > a:link {
  text-decoration: none;
  color: darkgreen;
}

header > a:visited {
  text-decoration: none;
  color: darkgreen;
}

header > a:hover {
  text-decoration: none;
  color: green;
}

header > a:active {
  text-decoration: none;
  color: greenyellow;
}


nav > a {
  text-decoration: none;
  padding: 10px;
  flex-grow: 1;
  font-size: 18px;
}

nav > a:link {
  text-decoration: none;
  color: white;
}

nav > a:visited {
  text-decoration: none;
  color: white;
}

nav > a:hover {
  text-decoration: none;
  color: greenyellow;
}

nav > a:active {
  text-decoration: none;
  color: grey;
}





.header-container {
  color: rgb(7, 78, 7);
  font-size: xx-large;
  text-align: center;
  background-color:#b7eb46;
  padding: 30px;
  margin-top: 40px;
  border-radius: 20px;
  box-shadow: 0px 0px 10px #666666;
  
}


.nav-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-evenly;
background-color: rgb(50, 153, 49);
margin-bottom: 10px;
padding: 1rem;
padding-left: 2rem;
border-radius: 20px;
box-shadow: 0px 3px 5px #555555;
}


.content {
  background-color: white;
  padding: 30px;
  padding-top: 10px;
  margin-top: 10px;
  border-radius: 20px;
  margin-bottom: 45px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  font-size: 18px;
}




/*SPECIAL ANNOUNCEMENTS*/



.i-aint-finished {
    color: gray;
    font-size: large;
    text-align: center;
}


.COVID {
  background-color: rgb(252, 61, 61);
  color: white;
  padding: 0.5cm;
  border-radius: 20px;
  margin-top: 15px;
  margin-bottom: 15px;
  text-shadow: 1px 1px 1px #666666;
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.2);
 font-size: 18px;

}

.obvestilo {
  background-color: #fcfc03;
  color: black;
  padding-top: 33px;
  padding-bottom: 1cm;
  padding-left: 25px;
  padding-right: 0cm;
  border: 2px black;
  border-radius: 10px;
  margin-top: 25px;
  margin-bottom: 20px;
  box-shadow: 2px 2px 5px 3px rgba(0, 0, 0, 0.2);
 font-size: 18px;
}


/*MEDIA*/

@media  only screen and (max-width: 800px) {
  body {
    margin-left: 7%;
    margin-right: 7%;
  
  }
}

@media (max-width: 600px) {
  body {
    margin-left: 2%;
    margin-right: 2%;
  }
}

@media (max-width: 500px) {
  body {
    margin-left: 2%;
    margin-right: 2%;
  }

  .nav-container {
    flex-direction: column;
    text-align: center;
  }

}


