@font-face {
    font-family: "Playpen Sans";
    src: url('PlaypenSans-VariableFont_wght.ttf');
}

html {
    font-size: calc(13px + 0.6vw);
    background-color: #1f242c;
    --mainBackgroundElementBackgrounds: rgba(71, 32, 79, 0.483);
	scroll-behavior: smooth;
    height: 100%;
}

body {
    margin: auto;
    overflow-x: hidden;
    height: 100%;
}

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}


h1, h2, h3, p, a {
    color: #ededed;
    font-family: "Playpen Sans";
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 2px 0 #000;
}

.intro {
    background-color: #381b36;
    text-align: center;
    border-bottom: 1px dashed #804008;
    padding-top: 80px;/*20px;*/
    padding-bottom: 30px;
    width: 100%;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19);
}

.mainblock {
    background-color: var(--mainBackgroundElementBackgrounds);
    text-align: center;
    border-bottom: 1px dashed #804008;
    margin: auto;
    padding-top: 20px;
    padding-bottom: 30px;
	padding-left: 20px;
	padding-right: 20px;
    width: 80%;
    border-radius: 20px;
    border-style: dashed;
    border-width: 1px;
	border-color: #804008;
	object-fit: contain;
}
.mainblock img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: auto;
}


.fullextend {
	min-height: 90%;
}

.no-pie{
	width: fit-content;
	padding-left: 5%;
	padding-right: 5%;

	text-align: center;
	margin: auto;

	border-radius: 20px;
	border-style: dashed;
	border-width: 1px;
}

.shadow {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19);
}

.navbar {
    background-color: rgba(38, 23, 42, 0.909);
    padding: 10px 0;
    display: flex;
    justify-content: center;
    border-bottom: 1px dashed #804008;
	user-select: none;
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar ul {
    padding: 0;
    margin: 0;
    display: flex;
    list-style: none;
}

.navbar li {
    padding: 0 10px;
}

.navbar a {
    text-decoration: none;
    display: inline-block;
    padding: 10px 15px;
}

.navbar a:hover {
    background-color: rgba(63, 22, 120, 0.803);
}

.navbar-active, .navbar a.navbar-active:hover {
    background-color: rgba(110, 37, 58, 0.366);
}

.navbarPadding {
    padding: calc(14px + 0.6vw);
}

.pixelated {
	image-rendering: pixelated;
}

.div-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); /* Grid adapts to screen width */
	gap: 20px;
	width: 80%;
	max-width: 768px;
	margin: auto;
  }
.div-expand-grid{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
	gap: 10px;
	row-gap: 30px;
	width: auto;
	height: min-content;
	margin: auto;
	padding-bottom: 20px;
    width: 80%;
}
.footer {

    bottom: 0;

    
    width: 100%;
    background-color: rgba(31, 9, 21, 0.947);
    color: white;
    text-align: center;
    padding-bottom: 10px;
    border-top: 1px dashed #804008;
    
}

/* Responsive Navbar */
.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    text-align: center;
    padding-top: 10px;
    color: white;
	background-color: rgba(38, 23, 42, 0.909);
    border-bottom: 1px dashed #804008;
    width: auto;
    margin: auto;
	user-select: none;
	height: 63px;
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 1001;
}

@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }
    .navbar {
        display: none;
        flex-direction: column;
        text-align: center;
        background-color: rgba(39, 12, 27, 0.6);
        border-bottom: 1px dashed #804008;
       
		user-select: none;
		margin-top: 63px;
    }
    .navbar ul {
        flex-direction: column;
        padding: 0;
    }
    .navbar li {
        padding-bottom: 5px 0;
    }
    .navbar a {
        display: block;
        padding: 10px 15px;
    }
    .menu-toggle:checked + .menu-icon + .navbar {
        display: flex;
    }
}