body, html {
	margin: 0;
	padding: 0;
	height: 100%;
	overflow-x: hidden; /* Hide horizontal scrollbar */
	background-color: #b8ced6; /* Dark brown */
	color: #53a5dc; /* Light yellow */
}

#WebContainer{
	padding: 10px;
	margin: 0;
	padding: 0;
	height: 100%;
	overflow-x: hidden; /* Hide horizontal scrollbar */

}

#reelsContainer {
left: 50vw;
}

.reel {
	width: 100vw;
    height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

#image-container {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}


/* Style the image with consistent dimensions and styling */
#random-image {
max-width: 640px; /* Ensure the image doesn't exceed container width */
max-height: 100%; /* Ensure the image doesn't exceed container height */
border-radius: 10px; /* Add rounded corners */
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Add larger border shadow */
transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transitions */
}

/* Add hover effect for interactivity */
#random-image:hover {
transform: scale(1.05); /* Scale image on hover for a subtle zoom effect */
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3); /* Increase shadow on hover */
}

/* Header Styles */
#header {
background-color: #9de3ec; /* Light green */
padding: 5px;
text-align: center;
width: 100%;
position: fixed;
z-index: 1000;
grid-row: 1/2;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Add larger border shadow */
}

#header a {
	margin: 0 10px;
}
#header p{
	font-size: 100px;
	color: #53a5dc; /* Light yellow */
	font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin: 10px;
}


#header2 {
    background-color: #9de3ec; /* Light green */
    text-align: center;
    width: 30vw;
    height: 20vh;
    left: 70vw;
    z-index: 1000; /* Ensure it's above other content */
    position: fixed;
}
    
#header2 a {
    margin: 0 10px;
}
#header2 p{
    font-size: 25px;
	color: #53a5dc; /* Light yellow */
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
    

#fileuploads{
text-align: center;
grid-row: 1/3;
grid-column: 1/3;
top: 10%; /* Align to the top */
left: 28%; /* Move to the horizontal center */
z-index: 1000; /* Ensure it's above other content */
}


#video-container {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

video, img {
	max-width: 600px; /* Ensure the image doesn't exceed container width */
max-height: 600px; /* Ensure the image doesn't exceed container height */
}

/* Style the image with consistent dimensions and styling */
#random-video {
border-radius: 10px; /* Add rounded corners */
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Add larger border shadow */
transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transitions */
}

/* Add hover effect for interactivity */
#random-video:hover {
transform: scale(1.05); /* Scale image on hover for a subtle zoom effect */
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3); /* Increase shadow on hover */
}

#saviorButton{
	/*visibility: visible; */
	display: block;
}

#ruinButton{
	/* visibility: hidden; */
	display:none;
}

.buttonSection{
	grid-row: 1/2;
	grid-column: 1/2;
	margin:auto;
	text-align: center;
	z-index: 20;
}

#form{
    top: 85vh;
    left: 40vw;
    position: fixed;
    z-index: 5999;
    display: flex;
    flex-direction: row;
    display: none;
}

#form2{
    top: 90vh;
    left: 48vw;
    position: fixed;
    z-index: 5999;
}

#form2 form{
    max-width: auto;
    margin: 0;
    padding: 0;
}

form {
    max-width: 400px;
    margin: 0 auto;
    padding: 1rem;
}

fieldset {
    border: 1px solid #ccc;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 5px;
}

legend {
    font-weight: bold;
    padding: 0 0.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.form-group label {
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

input[type="text"],
input[type="password"] {
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #aaa;
    border-radius: 4px;
}

input[type="submit"] {
    padding: 0.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}


#FormBox{
    display: flex;
    flex-direction: column;
    align-items: center;
}

#feedback{
    text-align: center;
    margin: auto;
}

#settings, #settings2 { 
    display: block; 
    text-align:center;
}


#paint {
    border: 1px solid black; 
    background : white;
    margin-left: auto; 
    margin-right: auto; 
    display: block; 
    margin-top: 30vh;
}

#LikesDisplay{
    margin-left: auto; 
    margin-right: auto; 
    text-align: center;
    display: block; 
    margin-top: 35vh;
    font-size: x-large;
}

#SavesDisplay{
    margin-left: auto; 
    margin-right: auto; 
    text-align: center;
    display: block; 
    font-size: x-large;
}

#PostsDisplay{
    margin-left: auto; 
    margin-right: auto; 
    text-align: center;
    display: block; 
    font-size: x-large;
}