* {
  box-sizing: border-box;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 20px;
}

p {
  font-size: 20px;
  text-align: justify;
}

h2 {
  background-color: #0ABAB5;
  padding: 20px;
  border-radius: 10px;
  width: fit-content;
  box-shadow: 10px 5px 5px black;
}

.column {
  width: 50%;
  padding: 20px;
  float: left;
}

a {
  text-decoration: none;
}

img {
  border-radius: 20px;
  width: 20%;
  height: auto;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

@media screen and (max-width: 600px) {
  .column {
    width: 100%; 
    float: none; 
  }
  img {
    
    border-radius: 20px;
    width: 50%;
    height: auto;
  }
}