/*
body {
   background-color:white;
   margin: 0;
   padding: 0;
}

#container {
	margin:auto;
	height: 100%;
	background-color: #fff;
	overflow: hidden;
}

#project_author{
	font-size: 20px;
}

#copy_icon:hover {
	cursor: pointer;
}

.game-player {
    position: relative;
    width: 100%;
    height: 540px;
    overflow: hidden;
    background: #000;
}

.game-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 1920px;
    height: 1080px;
	padding-left:9%;
    border: 0;
    transform-origin: top left;
    transform: scale(0.5); 
}

@media (max-width: 600px) {
    .game-player {
        padding-bottom: 75%; 
    }
    .game-player iframe {
        transform: scale(0.3); 
    }
}
*/

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {	
  margin: 0;
  background-color: #fff;
}

#container {
	margin:auto;
	max-width : 800px;
	padding : 5px;
	background-color: #fff;
	overflow: hidden;
}


.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;

	/* set scale of the embed to half */
	transform-origin: top left;
	transform: scale(0.5);
	
	/* double height and width to fit into parent container */
  width: 200%;
  height: 200%;
  
	border: 0;
}

/* change aspect ration of the embed */
.embed-responsive-21by9::before {
  padding-top: 42.857143%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}



#project_author{
	font-size: 20px;
}

#copy_icon:hover {
	cursor: pointer;
}

/* Fixed icon sizes */
#facebook_icon,
#twitter_icon,
#email_icon,
#copy_icon {
  height: 40px;
  width: 40px; /* Added width for consistency */
  border-radius: 8px;
  margin-top: 15px;
  margin-left: 5px;
}
