@charset "utf-8";
/* 
KX creative operations: ThemeBHS 
*/
body, html {
    display: flex;
	margin: 0;
    flex-direction: column;
	background-color: #1a1a1a;
	z-index: 1;
	scroll-behavior: smooth;
	flex: 1;
	}

main {
	flex: 100%;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.maincontain {
    display: flex;
    flex-direction: column;
    background-color: #1a1a1a;
    width: 100%;
    z-index: 3;
    margin: auto;
}

.container {
    background-color: #1a1a1a;
    color: #0fbeb6;
    padding: 5% 0 0;
    flex-direction: column;
    text-align: center;
    min-height: 100%;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('https://kxco.de/wp-content/themes/kx24theme/grfk/ibm-plex-sans-v8-latin-ext_latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

h1 {
    margin: 0;
    font-size: 10em;
    font-family: 'IBM Plex Sans', sans-serif;
}

p {
    margin: 0;
    font-size: 7em;
    font-family: 'IBM Plex Sans', sans-serif;
}

.buttons {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 10px;
}

button {
    display: flex;
    align-items: center;
    background-color: #52ae32;
    color: white;
    padding: 10px 20px;
    border-radius: 24px;
    border: none;
    font-weight: bold;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    max-width: 220px;
    justify-content: center;
}

button img {
    margin-left: 8px;
    width: 2rem;
    height: 2rem;
    filter: brightness(0) invert(1);
}

button:hover {
    background-color: darkgreen;
    border: #0fbeb6 thin;
}

@media (max-width: 945px) {
    main {
        max-width: 100%;
        box-sizing: border-box;
		flex-direction: column;
		bottom: 0;
    }
	
    .container {
        margin: 0 5%;
        padding: 30% 0 0;
        overflow-x: hidden;
        align-content: center;
    }

    h1 {
        font-size: 8em;
    }

    p {
        font-size: 3em;
    }

    .buttons {
        margin-top: 1.8rem;
        flex-direction: column;
        align-items: center;
    }

    button {
        width: 70%;
        max-width: 80%;
    }

    button img {
        margin-left: 4px;
        width: 1.5rem;
        height: 1.5rem;
    }
}



