@import url("https://fonts.googleapis.com/css2?family=Russo+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap");
@import "./fonts.css";
@import "./header.css";
@import "./player.css";
@import "./sponsorsSubpage.css";
@import "./chat.css";
@import "./newsletter.css";
@import "./footer.css";

*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  background: rgba(22, 23, 25, 1);
  letter-spacing: 0.02rem;
  margin: 0;
}

#content > div > .wrapper {
  background: rgba(22, 23, 25, 1);
}

html,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5 {
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  font-style: italic;
  font-family: SFProDisplay, sans-serif;
}

.subsectionTitle {
  padding-bottom: 3px;
  position: relative;
  overflow: hidden;
  font-size: 24px;
  margin-top: 13px;
  margin-bottom: 13px;
}

.subsectionTitle img {
  position: absolute;
  bottom: 0;
  right: 0;
}

button,
.clickable {
  cursor: pointer;
  text-transform: uppercase;
  font-family: SFProDisplay, sans-serif;
}

.contentWrapper {
  max-width: 1330px;
  width: 94%;
  margin: 0 auto;
}

.transparentButton {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  height: 100%;
}

.customButton {
  border: 1px solid var(--color-primary);
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  color: white;
  padding: 10px 42px;
  text-align: center;
  background: transparent;
  transition: all 0.2s;
}

.middleCol {
  width: 50%;
  margin-left: 35px;
  margin-right: 35px;
}

@media (max-width: 991.98px) {
  .contentWrapper {
    width: 95%;
  }

  .subsectionTitle {
    font-size: 18px;
  }
  .middleCol {
    margin-left: 25px;
    margin-right: 25px;
  }

  .customButton {
    padding: 8px 40px;
  }
}

@media (min-width: 768px) {
}

@media (max-width: 767.98px) {
}

@media (max-width: 575.98px) {
  .contentWrapper {
    width: 94%;
  }

  .subsectionTitle {
    font-size: 24px;
  }

  .middleCol {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .customButton {
    padding: 15px 40px;
    width: 100%;
  }
}
