body {
  background-color: black;
  font-family: Montserrat, Arial;
  margin: 0;
}

.header {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  z-index: 100;
}

/*LEFT PART*/
.ss-logo {
  width: 280px;
  padding-top: 10px;
  padding-left: 50px;
}


/*MIDDLE PART*/
.middle-part-header {
  width: 750px;
  display: flex;
  justify-content: space-between;
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 30px;
  margin-left: 30px;
}

.community {
  margin: 0;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.1s;
}

.table-rates, .merch, .tournaments, .food-n-drinks {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-weight: bold;
  cursor: pointer;
  transition: color 0.1s;
}

.middle-part-header a {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.middle-part-header p:hover {
  color: white;
}

/*RIGHT PART*/
.right-part-header {
  width: 240px;
  display: flex;
  justify-content: space-between;
  padding-right: 50px;
  flex-shrink: 0;
}

.right-part-header img {
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  top: -2px;
  right: -2px;
  padding: 16px;
  transition: filter 0.2s;
}

.right-part-header img:hover {
  filter: brightness(0);
}

.right-part-header button {
  width: 50px;
  height: 50px;
  background-color: black;
  border: 1px solid white;
  border-radius: 9px;
  position: relative;
  transition: background-color 0.2s, border 0.2s;
}

.right-part-header button:hover {
  background-color: white;
  border: 1px solid white;
}

/*FOOTER*/
.footer {
  position: fixed;
  bottom: 20px;
  right: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 100;
}

.book-reserve {
  color: white;
  font-weight: bold;
  font-size: 30px;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s;
}

.book-reserve:hover {
  font-size: 32px;
  opacity: 0.5;
}

.description {
  white-space: nowrap;
  margin-top: 10px;
  font-size: 8px;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.1s;
}

/*BALLS*/
.ball-left {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}

.ball-right {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1;
}

/*HOME CONTENTS*/
.community-contents {
  position: fixed;
  top: 170px;
  right: 0;
  left: 0;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.title-building {
  font-size: 18px;
  font-weight: 700;
}

.community-we {
  opacity: 0.6;
}