@font-face
{
	font-family: "ChineseRocks";
	font-style: normal;
	font-weight: normal;

	src: url('../fonts/ChineseRocks-Regular.otf');
}



@font-face
{
	font-family: "HapnaSlab";
	font-style: normal;
	font-weight: normal;

	src: url('../fonts/HapnaSlabSerif-DemiBold.ttf');
}



*, *::before, *::after
{
    margin: 0;
    padding: 0;

    box-sizing: border-box;
    user-select: none;
}



body::before
{
    content: "";
    
    position: fixed;
    top: 0;
    left: 0;
    
    width: 100vw;
    height: 100vh;
    
    background: #06030380;

    z-index: -1;
}



html, body
{
    color: white;

    font-family: "HapnaSlab", Arial, sans-serif;
}



h1, h2, h3, h4, h5, h6
{
    font-weight: normal;
    line-height: 1;
}



header
{
    display: grid;
    min-height: 100vh;
    overflow: hidden;
}



#background
{
    position: fixed;
    left: 0;
    top: 0;
    
    min-width: 100vw;
    min-height: 100vh;

    overflow: hidden;
    
    z-index: -2;
}



header .gradient
{
    background-image: linear-gradient(to bottom, #00000000, #060303);
    
    width: 100%;
	height: 12.5vh;

    overflow: hidden;

    z-index: 1;
}



header nav
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 2vh;
    
	height: 12.5vh;
}



header nav img
{
    position: relative;
    
    min-width: 10vh;
    min-height: 10vh;
    height: 10vh;

    z-index: 0;
}



header nav .links
{
    display: flex;
    gap: 2vh;
}



header .welcome
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1vh;

	height: 75vh;
}



header .welcome h1
{
    font-family: "ChineseRocks", Arial, sans-serif;
    font-size: 6vh;

    text-shadow: 0 0 1vh black;
}



header .preview
{
    display: flex;
    text-align: center;
    height: 80vh;
    gap: 5vh;
    padding: 0 2vh;
    align-items: center;
    justify-content: center;
}



header .preview h1
{
    font-family: "ChineseRocks", Arial, sans-serif;
    font-size: 6vh;
	
    text-shadow: 0 0 1vh black;
}



a
{
    color: rgb(189, 21, 40);

    text-decoration: none;

    transition: 0.25s;
}



a:hover
{
    color: red;
    
    text-decoration: none;
}



button
{
    font-family: "ChineseRocks", Arial, sans-serif;
    font-size: 2.5vh;

    background: none;
    color: white;

    cursor: pointer;
    pointer-events: initial;

    outline: none;

    border: 0;

    margin: 0 1vh;

    transition: 0.25s;
}



button:disabled, button:hover:disabled
{
	background: #101010;
	color: gray;
    
	cursor: not-allowed;
}



.underline
{
    position: relative;

    text-shadow: 0 0 1vh black;
}



.underline::after
{
    content: '';

    position: absolute;
    left: 0;
    bottom: 0;

    width: 2.5vh;
    height: 0.3vh;

    background-color: #FF0000;
    border-radius: 1vh;

    transition: all 0.25s ease-in-out;
}



.underline:hover::after
{
    width: 100%;
}



.special
{
    background: red;
    color: white;

    border-radius: 1vh;
    
    padding: 1vh;

    min-width: 20vh;

    transition: all 0.25s ease-in-out;
}



.special:hover
{
    background: white;
    color: red;
}



.highlight
{
    color: red;
}



.separator
{
    background: red;
    width: 50%;
    height: 0.25vh;
    
    border-radius: 1vh;
}



section
{
    background: #060303;

	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 3vh;

    padding: 5vh;

    overflow: hidden;
}



.content
{
    display: flex;
    flex-direction: column;
    gap: 2vh;
	
    width: 50%;
}



section h1
{
    font-family: "ChineseRocks", Arial, sans-serif;
    font-size: 6vh;
}



section h2
{
    font-family: "ChineseRocks", Arial, sans-serif;
    font-size: 3vh;
}



section p, li
{
    font-size: 1.7vh;
}



.right
{
	text-align: right;
}



.center
{
    align-items: center;
}



.mods
{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3vh;
}



.mod
{
    position: relative;
	
    display: flex;
	
    height: 25vh;
    
	border-radius: 1vh;
    
	transition: all 0.25s ease-in-out;
    
	overflow: hidden;
}



.mod:hover
{
    scale: 1.1;
}



.mod button
{
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
}



.mod h1
{
	font-family: "HapnaSlab", Arial, sans-serif;
	font-size: 2vh;
	
    position: absolute;
    bottom: 0;
	left: 0;

    padding: 2vh;
}



.downloads
{
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;

    gap: 2vh;
}



.modcover
{
	width: 40vh;
}



.big
{
	width: 80vh;
}



footer
{
    background: #060303;
	
    display: grid;
	
    width: 100%;

    padding: 0 2vh;
	
    overflow: hidden;
}



footer .separator
{
    background: red;
    width: 100%;
    height: 0.5vh;
}



footer nav
{
    display: flex;
    align-items: center;
	justify-content: space-between;
	
    height: 15vh;
}



footer nav img
{
    position: relative;
    
    min-width: 10vh;
    min-height: 10vh;
    height: 10vh;

    z-index: 0;
}



footer nav .links
{
    display: flex;
    align-items: center;
    gap: 2vh;
}



footer .copyright
{
	font-size: 1.5vh;
    padding: 2vh;
}



@media (max-width: 1000px)
{
	header .preview
	{
        min-height: 80vh;
		height: auto;
        
		flex-wrap: wrap;
	}
	
	.content
	{
		width: auto;
	}
	
	section
	{
		flex-wrap: wrap;
	}

	.right
	{
		justify-content: start;
	}

    .big
    {
        width: 40vh;
    }
}