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

body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    font-family: Arial, sans-serif;
}

.logo-container {
    text-align: center;
}

.logo {
    max-width: 90%;
    height: auto;
    /*filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));*/
}

.teaser {
    font-size: 1.5em;
    color: #155576;
}

p {
    text-align: center;
    margin-top: 20px;
    max-width: 90%;
}

@media (max-width: 768px) {
    body {
        justify-content: flex-start;
        padding-top: 10vh;
    }
    
    .logo {
        max-width: 95%;
    }
}
