/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
/*
body {
    background-color: lightblue;
    font-family: Arial, sans-serif;
}

h1 {
    color: darkblue;
    /text-align: center;
}

p {
    color: darkgreen;
    font-size: 18px;
}
*/

        .text_container {
          display: flex;
          flex-direction: row;
          flex-wrap: wrap;
          align-items: flex-start;
          justify-content: flex-start;
          gap: 25px; 
          }
        .text_field {
          flex: 1 1 auto;
            padding: 25px;
            outline: black double 10px; 
            align-items: center;
            width: 100%;
          }
        .text_field_small {
          flex: 1 1 auto;
            padding: 5px;
            outline: black double 10px; 
            align-items: center;
            display: inline-flex;
            width: auto;
            
          }
        .text_field_square {
            outline: black double 10px; 
          display: inline-block;
          }
        .text_field_square img {
          height:auto;
          width: 75px;
          }
        .text_field_flex {
          flex: 1 1 auto;
            padding: 25px;
            outline: black double 10px; 
            align-items: center;
            
          }
        .text_field_no_padding {
          flex: 1 1 auto;
            outline: black double 10px; 
          }
          
          
        .side {
          display: block;
          width: 15%;
          height: 100%;
          position: fixed;
          top: 0%;
          left:0%;
          justify-content: center;
          align-items: center; 
          background: #4779b3;
          }

