<style>
* {
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
    background-image: url("logo.gif");
  background-color: #cccccc;
}

a {
  color: hotpink;
  padding: 10px;
  text-align: center;
  font-size: 25px; 
}

spam {
    color: black;
  padding: 10px;
  text-align: center;
  font-size: 25px;
  background:red;
}

/* Style the header */
.header {
   background-image: url("/artwork/topstrip.gif");

  padding: 0px;
  text-align: center;
  font-size: 15px;
  height: 80px;
}

img {
  border-radius: 8px;
}

/* Create three equal columns that floats next to each other */
.column1 {
  float: left;
  width: 20%;
  padding: 10px;
background-color: #ffffff;
}

/* Create three equal columns that floats next to each other */
.column2 {
  float: left;
  width: 80%;
  padding: 10px;

}

.column-across {
  float: left;
  width: 100%;
  padding: 10px;
 text-align: center;
}

.column-across-top {
  float: left;
  width: 100%;
  padding: 10px;
 text-align: left;
}

/* Create three equal columns that floats next to each other */
.column3 {
  float: left;
  width: 290px;
  padding: 10px;
  text-align: center;
  height:310px;
  margin: 2px;
  color: #000;
  border-radius: 25px;
  background:rgba(240, 243, 235, 0.86);
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Style the footer */
.footer {
  background-color: #f1f1f1;
  padding: 10px;
  text-align: center;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
  .column {
    width: 100%;
  }
}

</style>