body {
    font-family: Arial;
    font-size: 1em;
    color: gray;
    margin: 10px;
    
    margin-left: 60px;
    margin-right: 60px;
}

.header {
  padding: 60px;
  
  text-align: center;
  color: #71A67D;
  font-family: "Times New Roman", Times, Serif;
  text-transform: uppercase;
  
  border: 1px solid #71A67D;
  background: linear-gradient(white,lightgray);
}

h2 {
  text-align:center;
  margin-top: 50px;
  
}

.navbar {
  display: flex;
  background-color: lightgray;
  background: linear-gradient(lightgray, white);
  text-align:center;
  justify-content: center;
  font-size:0.8em;
}

.navbar a {    
    padding: 14px 20px;
    text-decoration: none;
    text-align: center;
    color: gray;
    
}

.navbar a:hover {    
    color: #71A67D;
} 

.news {
    display:flex;
    justify-content: center; 
    margin: 10px;
    flex-wrap: wrap;
}

.actualNews {
    display:flex; 
    margin: 10px;
    padding-bottom:20px;
    flex-wrap: wrap; 
    justify-content: center; 
    border-bottom: 1px solid #71A67D; 
}

.newsItem {
    padding: 20px 20px;
    width:300px;
    border: 1px solid lightgray; 
    margin: 10px;
}

.newsItem h1 {
    font-size: 1em;
    color: #71A67D;
}

.newsItem .term {
    font-style: italic;
    font-size: 0.5em;    
}

.newsItem p {
    
}

.newsItem a {
  color: gray;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 30px;
}

input[type=text], select {
    width: 20%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid lightgray;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type=password], select {
    width: 20%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid lightgray;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type=submit] {
    width: 20%;
    background-color: #71A67D;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #468E56;
}