/* CSS files add styling rules to your content */

* {
  /*   box-sizing: border-box; */
}


body {
  background-image: url("background.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

h1 {
  font-family: "PT Sans", sans-serif;
  color: #000000;
}

h3 {

  font-size: 1.25rem;
}

img {
  border-radius: 10%;
}

a {
  color: #3780f5;
  text-decoration: none;
}

.copyright {
  text-align: center;
  color: grey;
}

* {
  box-sizing: border-box;
}
/*
body {
  font-family: Arial, Helvetica, sans-serif;
} */

/* Style the header */
.header {
  padding: 10px;
  text-align: center;
}

/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 50%;
  padding: 10px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Style the footer */
.footer {
  padding: 10px;
  text-align: center;
}

.main {
  padding: 3rem 1rem;
  max-width: 60%;
  font-family: source sans pro, helvetica, arial, sans-serif;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 100px;
  background-color: #ffffff;
  border-radius: 2%;
  font-size: 1.1rem;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media (max-width: 700px) {
  .column {
    width: 100%;
  }



  .main {
    max-width: 90%;
    border-radius: 0%;
  }


}
