/* General */
body {
    font-family: "Arial", Helvetica, sans-serif;
    font-size: 20px;
}
*{
  box-sizing: border-box;
}

/* Container for flexboxes */
.row {
  display: flex;
  flex-wrap: wrap;
}

/* Create four equal columns */
.column {
  flex: 25%;
  padding: 20px;
}

/* On screens that are 992px wide or less, go from four columns to two columns */
@media screen and (max-width: 992px) {
  .column {
    flex: 50%;
  }
}

/* On screens that are 600px wide or less, make the columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .row {
    flex-direction: column;
  }
}

/* Top Navigation */
.topnav {
    overflow: hidden;
    background-color: #3b245c;
    font-family: "Arial", Helvetica, sans-serif;
}

.topnav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 900;
}

.topnav a:hover {
    background-color: #252525;
    color: #FFFFFF;
}

.topnav a.active {
    background-color: white;
    color: #3b245c;
}

/* Brand CEITE */
.brand {
    overflow: hidden;
    text-align: center;
}

.logo {
    padding-left: 0px;
    width: 100%;
    height: 100%;
}

* {
  box-sizing: border-box;
}

 

/* NEWS PAGE - Center website */
.main {
  width: 100%;
  margin-width: none;

 

}

 

h1 {
  font-size: 50px;
  word-break: break-all;
}

 

.row {
  margin: 8px -16px;
 
}

 

/* NEWS PAGE - Add padding BETWEEN each column */
.row,
.row > .column {
  padding: 8px;

 

}

 

/* NEWS PAGE - Create four equal columns that floats next to each other */
.column {
  float: left;
  width: 25%;
}

 

/* Clear floats after rows */ 
.row:after {
  content: "";
  display: table;
  clear: both;
}

 

/* Content */
.content-news {
  background-color: #ccc8d1;
  padding: 5px;
  content-box: fixed;
  display: table-cell;
}

 

.content-news:hover {
    border: 3px solid #3b245c;
}

.botnav {
  overflow: hidden;
  background-color: #3b245c;
}

.botnav a {
  float: left;
  display: block;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.botnav a:hover {
  background-color: #ddd;
  color: black;
}

.botnav a.active {
  background-color: #3b245c;
  color: #3b245c;
}

.botnav input[type=text] {
  float: left;
  padding-left: 6px;
  border: 8;
  margin-top: 20px;
  margin-right: 16px;
  margin-left: 8px;
  margin-bottom: 20px;
  font-size: 17px;
}

  .botnav a, .botnav input[type=text] {
    float: none;
    display: inherit;
    text-align: center;
    width: 25%;
    margin-left: 36.5%;
    padding: 14px;
  }
  .botnav input[type=text] {
    border: 5px solid #3b245c;
  }

.footer {
    font-family: "Arial", Helvetica, sans-serif;
    color: #FFFFFF;
    height: 100%;
    border-color: #4c4754;
    text-align: center;
    font-size: 18px;
    line-height: 100px;
    background-color: #3b245c;
    font-weight: bold;
        }