html, body {
	margin: 0;
	padding: 0;
    min-height: 100vh;
}
body {
    background: darkgray;
    display: flex;
    flex-direction: column;
    font-family: sans-serif;
}

header {
	position: sticky;
	top: 0;
	left: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	gap: var(--gap-m);
	width: 100%;
	padding: var(--spacing-default, clamp(0.5rem, 1vw, 1.25rem));
	box-sizing: border-box;
    z-index: 100;
	background: #1120f2;
	background: linear-gradient(46deg,
			rgba(17, 32, 242, 1) 0%,
			rgba(45, 253, 236, 1) 46%,
			rgba(73, 176, 0, 1) 89%,
			rgba(45, 253, 236, 1) 100%);
}

footer {
    position: fixed;
    bottom: 0;
    right: 0;

    display: flex;
    align-items: center;
    gap: 0.75rem;

    min-height: 40px;

    width: fit-content;

    padding: 0.5rem 0.75rem;

    border-radius: 16px 0 0 0;

	background: linear-gradient(46deg,
			rgba(17, 32, 242, 1) 0%,
			rgba(45, 253, 236, 1) 46%,
			rgba(73, 176, 0, 1) 89%,
			rgba(45, 253, 236, 1) 100%);
    backdrop-filter: blur(8px);
    z-index: 99;
}


.logo {
	width: 64px;
	height: 64px;
	border-radius: 20px;
	transition: transform 0.3s;
}

.nav {
	align-items: center;
	display: flex;
	flex-grow: 1;
	flex-shrink: 0;
	justify-content: end;
	box-sizing: border-box;
}

.nav-list {
	column-gap: var(--gap-s, clamp(0.2rem, 1.5vw, .5rem));
	display: flex;
	list-style-type: none;
	margin-bottom: 0px;
	padding-left: 0px;
	box-sizing: border-box;
	margin-top: 0;
}

.nav-button {
	border: 2px solid #39383ba4;
	border-radius: 18px;
	padding: 5px;
	background: #0055C2;
	background: linear-gradient(16deg,
			rgba(0, 85, 194, 1) 0%,
			rgba(16, 32, 158, 1) 35%,
			rgba(0, 189, 0, 1) 100%);
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 16px;
	letter-spacing: 1px;
	word-spacing: 1px;
	color: #29FF40;
	font-weight: normal;
	text-decoration: none;
	font-style: normal;
	font-variant: small-caps;
	text-transform: none;
	transition: transform 0.3s, color 0.3s, background 0.3s;
	display: inline-block;
}

.nav-button:hover {
	color: white;
	transform: scale(1.12);
	transition: transform 0.3s, color 0.3s, background 0.3s;
	background: linear-gradient(344deg,
			rgba(0, 85, 194, 1) 0%,
			rgba(16, 32, 158, 1) 35%,
			rgba(0, 189, 0, 1) 100%);
}

.nav-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
	justify-content: space-between;
	align-items: center;
	transition: transform 0.3s, color 0.3s, background 0.3s;
}

.nav-button:hover {
	color: white;
	transform: scale(1.12);
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}


.carousel {
    position: relative;
    z-index: 1;
    width: min(1000px, 90vw);
	background-color: gray;
    border-radius: 32px;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
}
.card:hover img {
    transform: scale(1.01);
    transition: transform .2s ease;
}

.card img {
    width: 100%;
    max-height: 65vh;
    object-fit: cover;
    border-radius: 32px;
    box-shadow:
        0 10px 30px rgba(0,0,0,.4);
    transition: transform .2s ease;
}

.card:hover img {
    transform: scale(1.01);
}

.title {
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
}




.carousel .nav {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    z-index: 10;
    color: white;
    border: none;
    cursor: pointer;
    background: rgba(255,255,255,.04);
    transition: background .2s;
}

.carousel .nav:hover {
    background: rgba(255,255,255,.12);
}

.prev {
    left: 0;
    border-radius: 32px 0 0 32px;
}

.next {
    right: 0;
    border-radius: 0 32px 32px 0;
}




.dots {
    display: flex;
    justify-content: center;
    gap: .6rem;

    margin-top: 1rem;
    margin-bottom: .3rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    transition: .2s;
}

.dot.active {
    background: white;
    transform: scale(1.25);
}


.image-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 65vh;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;
    border-radius: 32px;

    box-shadow: 0 10px 30px rgba(0,0,0,.4);
}
.image-wrapper::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image: var(--bg);
    background-size: cover;
    background-position: center;

    transform: scale(1.2); /* prevents blur edges */
    filter: blur(40px);

    opacity: 0.9;
}
.image-wrapper img {
    position: relative;
    z-index: 1;

    max-width: 100%;
    max-height: 100%;

    width: auto;
    height: auto;

    object-fit: contain;

    /* optional polish */
    border-radius: 12px;

    box-shadow: 0 10px 25px rgba(0,0,0,.35);
}


.right-align {
	align-items: right;
}

.wide {
	width: 100%;
}

td {
	width: 100px;
	height: 50px;
	max-width: 100%;
	max-height: 100%;
}

tbody {
	width: 100%;
	text-align: center;
	background-color: Gray;
	font-size: 24px;
	border-radius: 12px;
}

.center {
	margin: auto;
	width: 80%;
	padding: 5px;
	text-align: center;
}


a.nodec:hover {
	color: white;
	background-color: green;
}

.head,
.foot {
	font-weight: bold;
}

.fancy_link:hover,
.return:hover {
	color: linen;
}

.fancy_link {
	font-weight: bold;
	color: indigo;
}

.return {
	position: absolute;
	bottom: 10px;
	right: 10px;
	font-weight: bold;
	color: indigo;
}