
* {
    box-sizing: border-box;
}

body {
  padding: 1rem;
}

.box {
  margin: 1em auto;
  padding: .5em;
  background: #FBFBFB;
  border: 1px solid #4D4D4D;
  border-radius: 7px;
  width: 600px;
}

h1, h2, h3, h4, h5, h6 {
  margin: 3px;
  padding: 0;
}

img {
  border-radius: 7px;
  border: 1px solid transparent;
}

/* Create two unequal columns that floats next to each other */
.column {
    float: left;
    padding: 10px;
}

.left {
  width: 25%;
  text-align: center;
}

.right {
  width: 75%;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

.center {
  text-align: center;
}

a {
  text-decoration: none;
  color: #000055;
  font-weight: bold;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 620px) {
  .box {
    width: 100%;
  }
  .column {
      width: 100%;
  }
  .left {
    text-align: left;
  }
  .pic {
    width: 100%;
  }
}
