.container {
  display: flex;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: white;
}

p {
  text-align: center;
  color: white;
  font-size: 160%;
  font-family: franklin-gothic-urw, sans-serif;
}

.link-btn {
  color: #f3d03e;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
}

.link-btn:hover {
  text-decoration: underline;
  text-decoration-color: #f3d03e;
}

.main-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  margin: 40px 0;
  flex: 1;
}

.left-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.box {
  background: linear-gradient(to right, #6f263d, #8a1538);
  border: 1px solid black;
  padding: 20px;
  color: white;
  width: 350px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.5);
}

a.hero-link {
  display: block;
  text-decoration: none;
}

.image-side img {
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer {
  background: linear-gradient(to right, #6f263d, #8a1538);
  color: white;
  padding: 40px 20px;
  margin-top: 30px;
}

.footer-content {
  display: flex;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap;
  background: linear-gradient(to right, #8a1538, #6f263d );
}

.footer-section h3 {
  text-align: center;
}

.footer-section p {
  margin: 5px 0;
}