h1 {
  text-align: center;
  color: #ffffff;
  font-size: 30px;
  font-weight: 600;

  margin-top: 5px;
  margin-bottom: 10px;
}

h3 {
  text-align: center;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 300;

  padding-left: 40px;
  padding-right: 40px;
  margin-bottom: 20px;
}

.homeimg {
  width: 100%;
  max-width: 440px;

  margin-top: 20px;
  margin-bottom: 20px;

  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.5);
}

.row {
  display: flex;
  align-items: center;
  max-width: 440px;
}

.column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.column h2 {
  font-size: 35px;
  color: #ffffff;
  font-weight: 400;

  margin: 0;
}

.column p {
  font-size: 17px;
  color: #dddddd;
  line-height: 1.4;

  margin: 0;
}

.imgs {
  width: 150px;
  max-width: 240px;

  margin-left: 10px;
  margin-right: 10px;
  margin-top: 40px;
  margin-bottom: 40px;

  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.5);
}

.right {
  text-align: right;
}

.linksrow {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.linksrow a {
  font-size: 17px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;

  padding: 10px 15px;
  border-radius: 6px;
  background: #660e0e;
  
  box-shadow: 0 4px 8px rgba(0,0,0,0.5);

  transition: 0.25s;
}

.linksrow a:hover {
  background-color: #961414;
}

.linksrow .order {
  background-color: #53ff0f;
  color:black;
}

.linksrow .order:hover {
  background-color: #2eaf0a;
}

/* on small screens make things smaller */
@media (max-width: 340px) {
  .row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .imgs {
    width: 50%;
    max-width: 300px;
    margin-left: 0;
    margin-right: 0;
  }
}