/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: Silver;
  font-family: Helvetica;
  font-size: 15px;
  color: black;
  margin: 40px 106px 80px 106px;
}

h1{
  border: solid rgb(86, 86, 86);
  font-size: 30px;
  text-align: center;
  margin: 0 10px 0 10px;
  background-color: rgb(148, 148, 148)
}
.grey-text {
color: rgb(86, 86, 86)
}

.ligrey-lines {
  background-color:rgb(148, 148, 148)
}

button{
  padding: 5px 31px 5px 31px;
  color: white;
  cursor: pointer;
  background-color: rgb(148, 148, 148);
}

img {
  border: solid 3px;
  border-radius: 150px;
  margin: 10px 0 0 0;
}

  #footer {
   text-align: center;
    font-size: 38px;
  }
