Rewrite css for team section
Going from almost 200 lines to 20 lines is a quite improvement

side effects: fixed glitches in scaling, fixed issue with images and containers beign different size, better alignment with section bellow it, added some spacing to spread out items for better visual hierarchy, getting rid of old method of creating layouts with tables which shouldn't be used at all

Signed-off-by: 00day0 <therandomuser11@gmail.com>
diff --git a/bfor.html b/bfor.html
index 1b7deb5..918ff32 100644
--- a/bfor.html
+++ b/bfor.html
@@ -2263,7 +2263,7 @@
         </div>
       </div>
 	  
-	  <section id="content"></section>
+	  <section id="content" class="team_content"></section>
     <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> 
     <script>
        $.ajax({
@@ -2273,12 +2273,12 @@
           var newContent = '';       // Variable to hold HTML
        
           for (var i = 0; i < data.length; i++) {    // Loop through object
-            newContent += '<div id="event">';
+            newContent += '<div id="event" class="team_item">';
             newContent += '<img class="image crop" src="' + data[i].image + '" ';
             newContent += 'alt="' + data[i].member + '" />';
             newContent += '<h3><b>' + data[i].member + '</b></h3>';
-            newContent += '<p>' + data[i].descriptions + '<br>';
-            newContent += '<i>&quot;' + data[i].email + '&quot;</i></p>';
+            newContent += '<p class="team_data_text">' + data[i].descriptions + '</p>';
+            newContent += '<p class="team_data_text"><i>&quot;' + data[i].email + '&quot;</i></p>';
             newContent += '</div>';
           }