@font-face {
    font-family: 'Space Grotesk';
    src: url('fonts/SpaceGrotesk-Regular.woff2') format('woff2'),
         url('fonts/SpaceGrotesk-SemiBold.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Space Grotesk';
    src: url('fonts/SpaceGrotesk-SemiBold.woff2') format('woff2'),
         url('fonts/SpaceGrotesk-SemiBold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

body {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    background-color: #0e0e2c;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.container {
    max-width: 900px;
    padding: 30px;
}

/* Überschrift */
h1 img{
	max-width: 100%;
	height: auto;
	width: 86%;
}

.bold {
    font-weight: 700;
}

/* Untertitel */
.subtitle {
    margin: 9px 0 40px;
    font-size: 1.2rem; 
    color: #afacac;
}

.standorte {
    margin: 15px 0 40px;
    font-size: 1.7rem; 
    color: #afacac;
}


/* Buttons */
.buttons {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 90px;
}

.btn {
    flex: 1 1 200px;    
    max-width: 250px;  
    text-align: center; 
    padding: 10px 0;    
    border-radius: 22px;
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-weight: 100;
    font-size: 1.4rem; 
    letter-spacing: 1px;
    transition: transform 0.2s ease;
	box-shadow: 1px 4px 10px rgba(0, 0, 0, 0.50);
}

.btn:hover {
    transform: scale(1.05);
	box-shadow: 1px 6px 14px rgba(0, 0, 0, 0.60);
}

/* Button-Farben */
.green {
    background-color: #69BA8B;
}

.red {
    background-color: #E8495B;
}

.yellow {
    background-color: #F1CA4E;
}

.grey {
    background-color: #aaa296;
}

.message {
    font-size: 1.3rem; 
    letter-spacing: 1px;
    color: #afacac;
}

/* Responsive */
@media (max-width: 600px) {
    h1 img{
       width:100% 
    }

    .btn {
        padding: 8.5px 15px;
        font-size: 1rem;
    }

    .subtitle {
        font-size: 1rem;
    }
	
	 .standorte {
        font-size: 1.4rem;
    }
	

}