/* Copyright MinePixel Studios 2024 */

body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #1e1e1e;
    color: #fff;
    overflow-y: auto;
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;
}

/* Background Overlay */

.background {
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url(https://img.freepik.com/premium-photo/purple-landscape-with-mountains-moon_1029445-3203.jpg);
    background-position: center;
    background-size: cover;
}

.background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(14, 14, 16, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* Other settings */

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

a:hover {
	text-decoration: underline;
}

.image-container {
    max-width: 900px;
    text-align: center;
    overflow: hidden;
	margin-top: 10px;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
	background-color: #1f1f2388;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.image-container img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.image-container img:hover {
    cursor: zoom-in;
}

.image-info {
	padding: 20px;
    background-color: #1f1f2388;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
	border-top: 1px solid #444;
}

.image-info p {
	margin: 0;
	font-size: 16px;
	color: #ccc;
}

/* --- FOOTER --- */

.footer {
    font-size: 10px;
    background-color: #1c1c1c;
    color: #fff;
    width: 100%;
    text-align: center;
    position: fixed;
    bottom: 0;
    text-decoration: none;
}

.footer-content {
    margin: 0 auto;
}

.footer link {
    color: white;
    text-decoration: underline;
}

.footer link:hover {
    text-decoration: none;
}