* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: "Montserrat", sans-serif;
  color: #333;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  background: url("/images/photos/IMG_2742.JPG") no-repeat center center/cover;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

.container {
  width: 60%;
  margin: auto;
  overflow: hidden;
}

header {
  position: relative;
  color: #fff;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

header .container {
  position: relative;
}

header img.logo {
  position: relative;
  margin: 0 auto;
  max-width: 450px;
  display: block;
}

header h1 {
  font-size: 3em;
  font-weight: bold;
  text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.8);
}

section.social-links {
  display: flex;
  justify-content: center;
}

section.social-links a {
  margin: 0 15px;
  color: #fff;
  font-size: 2rem;
  text-decoration: none;
}

section.social-links a:hover {
  color: #ddd;
}

section {
  padding: 20px 0;
  text-align: center;
  position: relative;
}

section h2 {
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  font-size: 2.5em;
}

section p {
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.sponsors-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.sponsor {
  background: rgba(51, 51, 51, 0.8);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  color: #fff;
  margin: 10px;
  width: 250px;
}

.sponsor .logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  padding: 20px;
  margin-top: 10px;
}

.sponsor img {
  max-width: 180px;
  max-height: 120px;
  display: block;
  height: auto;
}

.sponsor .text-container {
  text-align: center;
  font-size: 16px;
  margin-top: 10px;
}

footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  margin-top: auto;
  position: relative;
  width: 100%;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

p {
  margin-bottom: 1em;
}
