* {
  box-sizing: border-box;
}

/* Create two unequal columns that floats next to each other */
.column {
  float: left;
  padding: 50px;
  height: 1250px;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.left {
  width: 25%;
  text-align: right;
  color: rgb(117,75,96);  
}

.right {
  width: 75%;
  background: rgba(232, 154, 187, 0.2);
  text-align: left;
  color: rgb(117,75,96);
}

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

img {
  align-items: center; 
}
a {
    text-decoration: none;
    color: rgb(117, 75, 96);
}

a:hover, a:active {
    color: #E89ABB;
}

@media (max-width: 900px) {
  .column {
    flex: 50%;
    max-width: 50%;
    width: 100%;
    font-size: 10px;
  }
    