/* 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." */

* {
  box-sizing: border-box;
}
body {
  background-color: beige;
  margin: 0;
  font-family: verdana, arial, sans-serif, helvetica;
}

.col-container {
  background-color: aliceblue;
  display: flex;
  flex-wrap: nowrap;
  /* justify-content: center; */

  margin: 0px 50px;
  /* padding: 10px; */
  padding: 15px 10px;
  align-items: start;
 
}
.col-left {
  /* border: solid black 2px; */
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  flex-grow: 1;
  width: 40%;
}
.col-right {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  flex-grow: 10;
  border: dotted black 2px;
  /* padding: 10px; */
}
h1 {
  font-size: 1.5em;
  margin: 0 0 10px 0;
}
.profile-img {
  max-width: 160px;
  max-height: 160px;
}

.img-blerb {
  display: flex;
  font-size: 0.875em;
}

.square-blerb {
  /* font-size: 1.17em;
  font-weight: bold; */
  border: solid black 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 5px;
  margin-bottom: 10px;
  
}
