/* General Styling */
html, body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Trebuchet MS', Arial, sans-serif;
    background-color: steelblue;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Navbar Styling */
nav {
    margin-top: 26px;
    height: 80px;
    background: #4682b4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0rem calc((100vw - 1300px) / 2);
}

nav .logo {
    color: #f7e7ce;
    font-size: 1.5rem;
    font-weight: bold;
    font-style: italic;
    padding: 0 2rem;
}

nav .nav-items a {
    text-decoration: none;
    color: #f7e7ce;
    padding: 0 1.5rem;
}

/* Content Container */
.container {
    margin-top: 10px;
    padding: 20px;
    background: #4682b4;
    display: flex;
    flex-direction: column;
    text-align: center;
}

/* Download Section */
.download-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.download-section label {
	margin-top: 50px;
	margin-bottom: 50px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 5px;
}

.images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.images img {
    max-width: 30%;
    height: auto;
	opacity: 0;
	transform: translateY(100px);
	animation: slideUp 1s ease-in-out forwards;
}

.images img:nth-child(1) {
	animation-delay: 0.3s;
}
.images img:nth-child(2) {
	animation-delay: 0.6s;
}

.images img:nth-child(3) {
	animation-delay: 0.9s;
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(100px);
}
	to {
		opacity: 1;
		transform: translateY(0px);
}
}

/* Description Styling */
.description {
    margin-top: 200px; /* Spacing from the images */
    margin-bottom: 200px;
    max-width: 800px;
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.6;
    color: black;
    margin: 0 auto; /* Center align */
	transform: translateY(100px);
	opacity: 0;
	animation: slideIn 2.5s ease-in-out forwards;
	animation-delay: 0.9s;
}

.matte-box {
	text-align: left;
	margin: 20px auto 0;
	background-color: #1f2327;
	border-radius: 15px;
	width: 80%;
	max-width: 800px;
	height: calc(180*1em);
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
	transform: translateY(100px);
	opacity: 0;
	animation: slideIn 2.5s ease-in-out forwards;
	animation-delay: 0.9s;
}

.matte-box pre {
    border-radius: 15px;
    text-align: left; 
    color: #d3d3d3;
    font-size: 1rem;
    background: #1f2327; 
    padding: 10px; 
    font-family: 'Trebuchet MS', Arial, sans-serif; 
    white-space: pre-wrap; /* Allow text wrapping */
	max-height: 900px;
}
@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateY(100px);
		
}
	to {
		opacity: 1;
		transform: translateY(0px);
}
}


/* Links */
a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
