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

@font-face {
  font-family: lemontea;
  src: url('lemontea.ttf') format('truetype');
}

h1 {
  font-family: lemontea;
  font-weight: normal;
  font-style: normal;
  font-size: 50px;
  line-height: 0.5;
}
h2 {
  font-family: lemontea;
  font-weight: normal;
  font-style: normal;
  font-size: 30px;
}

body {
  
  color: black;
  font-family: Verdana;
}

.bearBG {
 background: linear-gradient(rgba(220, 20, 60, .75), rgba(220, 20, 60, .75)),
    url('bloombuff.png'); 
}

.row {
  display: flex;
  
  flex-direction: row;
  max-width: 75%;
  min-width: 75%;
  margin: auto;
  margin-top:10px;
  margin-bottom:10px;
  border: 2px solid crimson;
  border-radius: 5px;
  padding: 0.5%;
  background: white;
  color: inherit;
  font-family: inherit;
  box-shadow: 0 0 20px 0px black;
}

.coolbox {
  border: 2px solid crimson;
  border-radius: 5px;
  background: white;
  color: inherit;
  font-family: inherit;
  box-shadow: 0 0 3px 0px black;
  padding: 5px;
  justify-content: center;
  align-items: center;
  text-align: center
}

.cringebox {
  padding: 10px;
  color: inherit;
  font-family: inherit;
}

.bearheader {
  max-width: 50%;
  min-width: 25%;
  justify-content: center;
  align-items: center;
  padding: 5px;
  background-color: crimson;
  color: white;
  border: 2px solid white;
  text-align: center;
}



.roundimg {
 border: 2px solid white;
 border-radius: 50%;
 width:110px;
 height:110px;
}

.headericon {
 padding-right: 2%;
 padding-left: 2%; 
}

.column.lefty {
 
  order: 1;
  flex: 1 0 auto;
}
.column.righty {
  
  order: 3;
  flex: 1 0 auto;
}

.column.middle {
  
  order: 2;
  flex: 3 0 auto;
  padding: 20px;
}
/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other on smaller screens (600px wide or less) */
@media screen and (max-width: 800px) {
  .row {
    max-width: 95%;
    min-width: 95%;
    flex-direction: column;
}
.column.lefty {
  flex-basis: 20%;
  order: 2;
  flex: 1 1 auto;
}

.column.middle {
  flex-basis: 60%;
  order: 1;
  flex: 1 0 auto;
  padding-right:10px;
  padding-left:10px;
}
.column.righty {
  flex-basis: 20%;
  order: 3;
  flex: 1 1 auto;
}

h1 {
  font-size: 30px;
}
}