body {
  margin: 0;
  min-height: 100vh;
  background-image: url("images/background.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: Arial, Helvetica, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: -1;
}

#wrapper {
  width: 78%;
  max-width: 1000px;
  min-width: 700px;
  margin: 180px auto;
  background-color: rgba(20, 20, 20, 0.92);
  box-shadow: 0 10px 30px rgba(0,0,0,0.7);
  border-radius: 14px;
  overflow: hidden;

  box-shadow:
  0 0 40px rgba(200, 16, 46, 1),
  0 0 80px rgba(200, 16, 46, 0.7),
  0 10px 30px rgba(0,0,0,0.7);
}

header { 
  background: linear-gradient(135deg, #231F20, #8B0000);
  color: #ffffff;
  padding: 24px;
  text-align: center;
}

h1 { 
  margin: 0;
  font-size: 2.2em;
  letter-spacing: 1px;
}

h2, h3 { 
  color: #8B0000;
  margin: 5px 0;
}

main {
  margin-left: 0;
  padding: 25px 35px;
  background-color: rgba(255,255,255,0.95);
  color: #111;
  min-height: 330px;
}

.team {
  display: flex;
  gap: 18px;
  margin: 15px 0;
  flex-wrap: nowrap;
}

.team div{
  text-align: center;
  font-size: 0.9em;
}

.team img{
  width: 85px;
  height: 85px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #8B0000;
}

.links{
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
}

.links a{
  background-color: #8B0000;
  color: white;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
}

.links a:hover{
  background-color: #C8102E;
}

p {
    line-height: 1.6;
  }

footer { 
  margin-left: 0;
  padding: 14px;
  text-align: center;
  font-size: 0.75em;
  font-style: italic;
  background-color: rgba(255, 255, 255, 0.96);
  color: #333333;
}

.clear { 
  clear: both; 
}
