body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #000; 
  font-family: Arial, sans-serif;
  color: white; 
}

.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: 15%;
  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: #FFFFFF;
  margin: 0.5em 0;
  font-weight: bold;
}



.privacy-policy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width : auto;
  height: 70%;
  text-align: center;
  flex-wrap: wrap; 
}

.privacy-policy p {
  font-size: 1em; 
  width: 60%; 
  height: auto; 
	color: #1666BA;
  margin: 50px auto;
  font-weight: bold;
}


.iframe-container iframe {
  width: 100%; 
  height: 100%;
  border: none; 
  padding: 0;
}


/* KAVEH : Properties of Social Media buttons */

nav.social-media {
  position: absolute;
  bottom: 5px; 
  right: 20px; 
  padding-bottom: 0;
  
  margin-top: 20px;
  margin-bottom: 5px;
}

nav.social-media a {
  margin: 0 10px;
  display: inline-block;
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.container-social-media-buttons > .icon {
  position: absolute;
  right: 0;
}

/* 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'); }

.button-to-links {
  display: flex;
  justify-content: center; 
  align-items: center; 
  position: relative;
  height: 100%; 
  padding-bottom: 0;
  margin-top: 10px;
}

.button-to-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.7em;
  padding: 10px 20px;
  border: 1px solid white;
  border-radius: 25px;
  margin: 15px 10px; 
  text-align: center;
  font-weight: bold;
}



.button-to-links a:hover {
  background-color: #333;
}

.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 p {
    font-size: 1em;
  }

  nav.social-media a {
    width: 30px;
    height: 30px;
  }
  
  .button-to-links {
  display: flex;
  justify-content: center; 
  align-items: center; 
  position: relative;
  height: 100%; 
  padding-bottom: 0;
  margin-top: 0px;
  margin-bottom: 20px;
}

.button-to-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1em;
  padding: 4px 8px;
  border: 1px solid white;
  border-radius: 25px;
  margin: 0 10px; 
  text-align: center;
}


.privacy-policy p {

  width: 80%; 


}
