@import url("https://fonts.googleapis.com/css?family=Montserrat&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

body {
  font-family: 'Montserrat', serif;
  background: #2d2254;
  color: #fff;
  font-size: 18px;
  line-height: 1.6; }

h1,
h2,
p {
  margin-bottom: 10px; }

a {
  text-decoration: none;
  color: #fff; }

ul {
  list-style: none; }

.btn {
  display: inline-block;
  border: 0;
  background: #f5c42f;
  color: #fff;
  border-radius: 20px;
  padding: 8px 30px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  margin-top: 10px;
  transition: all 0.5s; }
  .btn:hover {
    transform: scale(0.98); }

.primary-text {
  color: #2d2254; }

.secondary-text {
  color: #f5c42f; }

section {
  position: relative;
  padding: 0 20px; }

.section-top {
  min-height: 500px;
  background: url("https://i.ibb.co/PhVR2Vh/bg1.png") no-repeat center center/cover; }
  .section-top h1 {
    font-size: 70px;
    line-height: 1.3; }
  .section-top .content {
    position: absolute;
    top: 100px;
    right: 70px;
    width: 50%; }

.section-stream {
  min-height: 700px;
  background: url("https://i.ibb.co/bsX6RV0/bg2.png") no-repeat center center/cover; }
  .section-stream h2 {
    font-size: 35px; }
  .section-stream .play {
    width: 27%;
    position: absolute;
    top: 100px;
    left: 50px; }
  .section-stream .content {
    position: absolute;
    width: 50%;
    top: 130px;
    right: 70px; }
    .section-stream .content > div {
      background: rgba(255, 255, 255, 0.1);
      padding: 20px;
      margin-bottom: 20px;
      border-radius: 10px; }

.section-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  text-align: center; }
  .section-grid p {
    color: #c5bbec; }
  .section-grid .dot {
    font-size: 40px; }
  .section-grid > div {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px; }

.footer {
  border-top: #c5bbec 1px solid;
  padding: 30px;
  margin-top: 20px; }
  .footer ul {
    display: flex;
    align-items: center;
    justify-content: space-around;
    text-align: center; }

@media (max-width: 700px) {
  .section-top .content,
  .section-stream .play,
  .section-stream .content {
    position: static;
    width: 100%; }
  .section-top {
    min-height: 200px;
    padding-top: 100px; }
    .section-top .content {
      text-align: center; }
      .section-top .content h1 {
        font-size: 45px; }
  .section-stream {
    min-height: 400px; }
    .section-stream .play {
      width: 50%;
      display: block;
      margin: 30px auto; }
  .section-grid {
    display: block;
    margin-top: 0; }
  .footer ul {
    display: block; } }
