body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #000;
  font-family: Arial, sans-serif;
  color: white;
  overflow: hidden;
  }

.container-social-media-buttons {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  height: 20%;
  text-align: center;
  position: relative;
  flex-wrap: wrap;
}

header {
  display: flex;
  justify-content: space-between;
  height: 5%;
  text-align: center;
  position: relative;
  flex-wrap: wrap;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
}


/* KAVEH : You can change the size of the main logo image here */

header img {

  width: 20%;
  height: auto;
}

/* KAVEH : Properties of "BEAT 'EM ALL AND BE THE LEGEND!" text */
header p {
  font-size: 1em;
  width: 30%;
  height: auto;
  color: #1666BA;
  margin: 0.5em 0;
  font-weight: bold;
}

header p2 {
  display: none;
}

.iframe-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 70%;
  height: 85%;
  text-align: center;
  flex-wrap: wrap;
  left: 50%;
  transform: translate(-50%);
}

.iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  padding: 0;
}

footer {
  height: 10%;
  position: relative;
}

/* KAVEH : Properties of Social Media buttons */

nav.social-media {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  padding-bottom: 0;
  position: absolute;
  right: 10px;
  bottom: 5px;
  }

nav.social-media a {
  margin: 0 10px;
  display: inline-block;
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.container-social-media-buttons>.icon {
  position: absolute;
  right: 0;
}

.button-to-links {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-bottom: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%); 
  }

.button-to-links a {
  color: #1b4265;
  text-decoration: underline;
  font-size: 0.7em;
  padding: 0px 5px;
  margin: 0px 5px;
  text-align: center;
  font-weight: bold;
  
}

/* KAVEH : You can change images of social media links here. These are path of folders you can find in c panel */
.instagram {
  background-image: url('images\\social-media-icons\\Instagram.png');
}

.facebook {
  background-image: url('images\\social-media-icons\\Facebook.png');
}

.tiktok {
  background-image: url('images\\social-media-icons\\Tiktok.png');
}

.youtube {
  background-image: url('images\\social-media-icons\\Youtube.png');
}

.twitter {
  background-image: url('images\\social-media-icons\\TwitterX.png');
}



.container-buttons {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100% height: auto;
  text-align: center;
  flex-wrap: wrap;
}


/* Responsive adjustments */
@media (max-width: 768px) {

  header {
    height: 100%;
  }

  header a {
    width: 50%;
    margin-bottom: 10%;
  }

  header p {
    display: none;
  }

  header p2 {
    display: flex;
    font-size: 1em;
  }

  nav.social-media a {
    width: 30px;
    height: 30px;
  }

  .button-to-links {
    display: none;
  }

  .iframe-container {
    display: none;
  }

}