
* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 0px;
  margin: 0px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul { 
  list-style: none; 
  margin: 0; 
  padding: 0; 
  display: flex;
}

nav li {
  padding: 10px 20px;
}

nav a {
  text-decoration: none;
  color: black;
}

nav a:hover {
  color: rgb(70, 120, 170);
}

h1 {
  padding-top:30px;
}

.column {
  display: flex;
  justify-content: space-between;
}

.centered {
  align-items: center;
}

.col-half {
  width: 45%;
}

.col-third {
  width: 30%;
}

.col-twothird {
  width: 66%;
}

.nodec {
  text-decoration: none;
}




h1, h2, h3 {
  font-weight: normal;
  color:  rgb(70, 120, 170) ;
}

p {
  line-height: 1.8em;
}

.rightj {
  text-align: right;
}

.centerj {
  text-align: center;
}

.smallertext {
  font-size: smaller;
}

footer {
  padding-top: 40px;
}

footer p {
  font-size: smaller; 
  text-align: center;
  margin: 0;
  padding: 0; 
}

#cookies-eu-banner {
  background-color: rgb(199, 230, 250);
  max-width: none;
  text-align: center;
  padding: 10px;
}

#cookies-eu-accept,
#cookies-eu-reject {
  text-decoration: none;
  background: rgb(50, 50, 120);
  color: #fff;
  border: 1px solid #000;
  cursor: pointer;
  padding: 4px 7px;
  margin: 2px 0;
  font-size: 13px;
  font-weight: bold;
  transition: background 0.07s, color 0.07s, border-color 0.07s;
}

#cookies-eu-accept:hover,
#cookies-eu-accept:focus {
  background: #fff;
  color: rgb(0, 0, 0);
}


#cookies-eu-reject {
  background: none;
  font-weight: normal;
  color: rgb(119, 119, 119);
  cursor: pointer;
  padding: 4px 7px;
  margin: 2px 0;
  border:  1px solid #000;
}
#cookies-eu-reject:hover,
#cookies-eu-reject:focus {
  border-color: #fff;
  background: rgb(50, 50, 120);
  color: #fff;
}
