* {
  margin: 0;
  font-family: 'Menlo';
  box-sizing: border-box;
}

h1 {
  font-size: 5rem;
  margin: 10px 0px 15px 0px;
}
hr {
  border: 2px solid black;
}
h2 {
  font-size: 2rem;
}

body {
  width: 100%;
  height: 100%;
  background-color: rgba(95, 248, 113, 0.5);
  min-width: 300px;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
}
.left {
  background-image: url("assets/left.webp");
  position: fixed;
  left: 0;
  top: 0;
}
.right {
  background-image: url("assets/right.webp");
  position: fixed;
  right: 0;
  top: 0;
}
.left, .right {
  width: 25%;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
}

.content {
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  margin: auto;
  padding: 10px;
  width: 50%;
}

@media (max-width: 1000px) {
  .content {
    width: 100%;
  }
  .section {
    background-color: rgba(25, 129, 27, 0.8) !important;
  }
  .left, .right {
    width: calc(50% + 1px); /* To "seamlessly" touch in the middle */
  }
  .left {
    background-position: right;
  }
  .right {
    background-position: left;
  }
  winner-group {
    background-color: rgba(35, 153, 37, 0.8) !important;
  }
}

.section-header {
  color: white;
  padding: 20px;
  margin: 15px;
  width: 100%;
  background-color: rgba(21, 108, 23, 0.9);
}

.title {
  display: flex;
  flex-direction: column;
  word-wrap: break-word;
}

#past-winners, #current-winners {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
winner-group {
  padding: 10px;
}

.title-decoration {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
