
/* Allgemeines */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
	color: white;
}

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
	background-color: #09101e;
	font-family: 'Jost', sans-serif;
}


.wrapper {
    width: 100%;
    height: auto;
    margin: 0 auto;
    position: relative;
    padding-left: 12px;
    padding-right: 12px;   
}


h1 {
    font-size: 30px;
	font-weight: 300;
    margin-bottom: 2,5%; 
	letter-spacing: 0.25em;
}


h2 {
    font-size: 20px;
	font-weight: 400;
}

/* Sticky Footer */

.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1002; 
	background-color: #09101e;
	padding: 24px;
}

/* Buttons */

button {
	width: 100%;
	margin-top: 24px;
	padding: 22px;
	background: linear-gradient(to right, #8ec89a, #008ecf);
	border-radius: 12px;
	border: none;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center
}

button img {
	margin-right: 10px;
}

/* Kopfbereich */

.header img{
	max-width: 250px; 
    height: auto;
    display: block;
    margin: 0 auto;
    padding-top: 5%;
}
.header {
    margin-top: 5%;
}


.photo-container {
    margin-top: 10%;
}

.photo-circle {
    width: 180px; 
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    margin-bottom: 8%;
}

/* Name und Titel */

.title-container {
    text-align: center;
	padding-top: 15%;
}

/* Adressdaten */

.table-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 15%;
    margin-bottom: 55%; 
}

table {
    border-collapse: collapse;
    text-align: left;
}

td {
    border: none;
    padding: 5px;
    text-align: left;
	vertical-align: top;
}

.word {
    font-size: 14px;
    text-align: right;
	font-weight: bold;
}

.address {
    font-size: 14px;
    text-align: left;
}

/* Media Queries */

@media (max-width: 430px) {
    .wrapper {
        width: 95%; 
    }

    .logo {
        width: 50%; 
    }
    
    .photo-circle {
        width: 49%; 
    }

    h3 {
        font-size: 0.9em; 
    }
}
