/* 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 {
  font-family: Impact;
  color:#FFFFFF;
  background: #000000;
  } 
p1 {
  color: #FFFFFF;
  font-family: Arial Black;
}

header{
 margin-bottom: 2rem;
 background: #961717;
 color: #000000;
 }
footer{
  position: absolute;
  bottom: 2rem;
  right: 2rem;
}
section{
  padding-top: 5rem;
  width: fit-content;
  margin: auto;
}
a.button {
  display: block;
  border: 1px solid black;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-family: "Andika-Bold";
  font-size: 1.25rem;
  box-shadow: 0 4px 0 0 black;
  cursor: pointer;
  transition: all 0.35s ease;
  background: white;
}
a.button span {
  display: flex;
  align-items: center;
}
a.button:hover {
  box-shadow: 0 8px 0 0 black;
  transform: translateY(-6px);
  transition: all 0.15s ease;
}

a.button:active {
  box-shadow: 0 0px 0 0 black;
  transform: translateY(8px);
}
.call-to-action{
		display: flex;
		gap: 2rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create two equal columns that sits next to each other */
.column {
  flex: 50%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
}


</style>
