/* 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." */
@font-face {
  font-family: "normal";
  src: url("fonts/Macondo-Regular.woff?#iefix") format("woff");
}

@font-face {
  font-family: "heading";
  src: url("fonts/PirataOne-Regular.woff?#iefix") format("woff");
}


body {
  background-color: #2D1A0B;
  color: #2D1A0B;
  font-family: normal;
  line-height: 2;
  font-size: 30px;
  height: 100%;
}

.card {
  background-color: #E2AE86;
  padding: 20px;
  margin-top: 20px;
}

.leftcolumn {
  float: left;
  width: 75%;
}

.fakeimg {
  background-color: #aaa;
  width: 100%;
  padding: 20px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.body-sizing {
  display:flex;
  padding-left: 240px;
  padding-right: 240px;
}

.body-background {
  background-color: #F6E6DA;
  padding-left: 40px;
  padding-right: 40px;
}

h1 
{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 66px;
  color: #734AA8;
  font-family: heading;
  text-shadow: 1px 1px 2px #2D1A0B;
  letter-spacing: 10px;
}

h2 
{
  color: #211308;
}

h5 
{
  color: #211308;
}

li
{
  padding-bottom: 15px;
}

.button {
  border: none;
  color: white;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}

.button1 {
  background-color: #E2AE86;
  color: #2D1A0B;
  border: 2px solid #2D1A0B;
}

.button1:hover {
  background-color: #734AA8;
  color: #F6E6DA;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: max-content;
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(246, 230, 218, 0.03) 14px, transparent 14px),
        linear-gradient(to bottom, rgba(246, 230, 218, 0.03) 14px, transparent 14px);
    z-index: -1;
}