@import url('https://fonts.googleapis.com/css2?family=Cal+Sans&display=swap');

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

body{
    background: linear-gradient(90deg, rgba(234, 187, 127, 1) 20%, rgba(254, 94, 254, 1) 90%);
}

.logo img{
    align-items: left;
    padding-left: 10px;
}

#logo-teaser {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#logo-teaser img {
    width: 50%;
}

@media (max-width: 600px) {
    #logo-teaser img {
        width: 90%;
    }
}

#logo-teaser p{
    font-family: "Cal Sans", sans-serif;
    color: #ffffff;
    font-size: 2em;
}

footer {
    margin-top: auto;
    text-align: center;
    color: white;
    font-family: "Cal Sans", sans-serif;
}

.copyright p{
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #ffffff;
    text-align: center;
    margin-bottom: -10px;
}