
/* MARK: Layout */

html {
  height: 100%;
}

body {
  background-color: var(--background-color);
  color: #fff;
  box-sizing: border-box;
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height);
  margin: 0;
  padding: var(--padding-layout);
  height: 100%;
}
@media (min-width: 750px) {
  body::before {
    background-image: url('../img/we_axe_white.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% auto; /* Adjust the size as needed */
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.1; /* Adjust the opacity as needed */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: -1; /* Ensure the background is behind the content */
  }
}

.main {
  padding: var(--padding-item);
  max-width: var(--size-main);
  margin: 0 auto;
}
@media (max-width: 750px) {
  .main {
    max-width: 100%;
    margin: 0 auto;
  }
}

.footer {
  border-top: 3px solid var(--secondary-color);
  box-sizing: border-box;
  padding: var(--padding-footer);
  margin: var(--margin-footer);
  text-align: center;
  position: relative;
  bottom: 0;
  width: 100%;
}
@media (min-width: 750px) {
  .footer {
    border-radius: var(--border-radius-footer);
  }
}

/* MARK: Headers */

h1 {
  background-color: var(--primary-color);
  font-size: calc(var(--font-size-base) * 2);
  margin: var(--margin-header);
  margin-top: 0px;
  padding: var(--padding-h1);
}
@media (min-width: 750px) {
  h1 {
    border-radius: var(--border-radius-header);
  }
  h2 {
    border-radius: var(--border-radius-header);
  }
}

h2 {
  border-bottom: 3px solid var(--primary-color);
  font-size: calc(var(--font-size-base) * 1.5);
  margin: var(--margin-header);
  padding: var(--padding-h2);
}

/* MARK: Content */

a {
  color: var(--text-color);
  text-decoration: none;
}
a:hover {
  color: var(--text-color);
  text-decoration: underline;
}

p {
  margin: var(--margin-item);
  padding: 0em;
}

/* MARK: Sections */

.section { /* Section */
  padding: 0px;
  margin: var(--margin-item);
}

.logo { /* Logo section */
  display: block;
  margin: 0 auto;
  max-height: 350px;
  max-width: 100%;
}
.logo h1 {
  display: none;
}

.intro { /* Intro section */
  text-align: center;
  font-size: calc(var(--font-size-base) * 1.25);
  font-style: italic;
}

.links { /* Links section */
  display: flex;
  justify-content: center;
  flex-direction: row;
  font-size: calc(var(--font-size-base) * 4);
  gap: 1em;
}
.links a { 
  opacity: 0.5;
}
.links a:hover {
  opacity: 1;
  text-decoration: none;
}

.photos { /* Photos section */
  display: flex;
  justify-content: center;
  flex-direction: row;
  gap: 1em;
  margin: var(--margin-item);
  padding: 0px;
  width: 100%;
}
.photos img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-header);
}