@import url('https://fonts.googleapis.com/css2?family=Monda&display=swap');

* {
    box-sizing: border-box;
}

h1{
    color: lime;
}

a{
    color: white;
}

.ColumnContainer {
    background: url(IOK-Hatter.jpg) no-repeat center;
    background-size: cover;
    font-family: 'Monda', sans-serif;
    margin-top: 100px;
    padding: 40px 0;
    position: absolute; 
    top: 0;
    left: 0; 
    min-width: 100%;
    min-height: 100%;
}

.ColumnContainer h1 {
    margin-top: -17px;
    text-align: center;
    color: #ffffff;
}

.border {
    width: 100px;
    height: 10px;
    background: #006CDC;
    margin: 40px auto;
}

.column {
    text-align: center;
    font-family: 'Monda', sans-serif;
    color: white;
    font-size: 18px;
    float: left;
    background: #006CDC;
    width: 47.95%;
    padding: 10px;
    height: 540px; 
    margin: 10px;
    margin-bottom: 30px;
}
  
.row:after {
    content: "";
    display: table;
    clear: both;
}


@media screen and (max-width: 1100px) {
    .column {
      width: 100%;
      margin: 0px;
      margin-bottom: 30px;
    }
}