html, body{
    height: 100%;
    margin: 0;
}

body{
    background-image: url("../images/EA.png");
    background-repeat: repeat;
    background-size: cover;
    background-position: center;
}

.title{
    text-align: center;
}

h1{
    color: white;
    background-color: black;
    padding: 10px;
    border: 2px solid white;
    display: inline-block;

    margin-left: auto;
    margin-right: auto;
}

h2{
    color: White;
    background-color: rgba(0,0,0,0.7);
    padding: 10px;
    border: 2px solid black;
    display: table;
    clear: both
    
}

h4{
    color: black;
    background-color: white;
    padding: 10px;
    border: 2px solid black;
    display: table;
    clear: both
    
}

p{
    color: black;
    background-color: white;
    padding: 10px;
    border: 2px solid black;
    display: table;
    clear: both
    
}

ul{
    color: black;
    background-color: white;
    padding: 10px;
    border: 2px solid black;
    display: table;
    clear: both
    
}

.column{
  float: left;
  width: 33.33%;
  padding: 5px;
    
}

.row::after{
  content: "";
  clear: both;
  display: table;

}

.row{
  display: flex;
}

.column{
  flex: 33.33%;
  padding: 5px;
}