/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: Arial, sans-serif;
    background-color: #d51317;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

/* Container */
.container {
    width: 80%;
	opacity: 0;
    transform: translateY(0px);
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.2s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo */
.logo {
    width: 80%;
    height: auto;
    margin-bottom: 20px;
}

/* Texte */
h1.h1-desktop {
    font-size: clamp(2rem, 1.25rem + 2.5vw, 4.25rem);
    margin-bottom: 10px;
}

h1.h1-mobil {
    font-size: clamp(2rem, 1.25rem + 2.5vw, 4.25rem);
    margin-bottom: 30px;
}

.contact-info-desktop {
    font-size: clamp(1.5rem, 1.0833rem + 1.3889vw, 2.75rem);
    margin-bottom: 10px;
}

.contact-info-desktop a {
	color: white;
	text-decoration: none;
}

.contact-info-desktop a:hover {
	color: black;
	transition: 0.3s;
}

.contact-info-mobil {
    font-size: clamp(1.5rem, 1.0833rem + 1.3889vw, 2.75rem);
    margin-bottom: 30px;
}

.contact-info-mobil a {
	color: white;
	text-decoration: none;
}

.contact-info-mobil a:hover {
	color: black;
	transition: 0.3s;
}

.address-desktop {
    font-size: clamp(1.5rem, 1.0833rem + 1.3889vw, 2.75rem);
    margin-bottom: 10px;
}

.address-mobil {
    font-size: clamp(1.5rem, 1.0833rem + 1.3889vw, 2.75rem);
    margin-bottom: 30px;
}

.links {
    font-size: clamp(0.875rem, 0.75rem + 0.4167vw, 1.25rem);
}

.links a {
    color: white;
    text-decoration: none;
}

.links a:hover {
    color: black;
	transition: 0.3s;
}

/* Responsive Anpassungen */
@media (max-width: 1280px) {
    .container, .logo {
        width: 90%;
    }
}

/* Bestimmte Blöcke je nach Größe ausblenden*/
@media (max-width: 767px) {
    h1.h1-desktop, .contact-info-desktop, .address-desktop {
        display:none;
    }
}

@media (min-width: 768px) {
    h1.h1-mobil, .contact-info-mobil, .address-mobil {
        display:none;
    }
}