/* 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 #9ab3ae #397d6f #6f9e95
   "how to change link color." */




.home-page {
    background-size: 40px 40px;
    background-image:
      linear-gradient(to right, #c3c5c4 2px, transparent 2px),
      linear-gradient(to bottom, #c3c5c4 2px, transparent 2px);;
    background-color: #f5ece3;
    margin: 0;
    color: #397d6f;
    font-size: 17px;
    line-height: 20px;
}

.symbol {
  width: 14%;
  top: 0;
  left: 0;
  transform: rotate(10deg);
}

@media (max-width: 700px) {
  .symbol {
    width: 35%;
  }
}



