@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Outfit:wght@100..900&display=swap');

html {
    font-family: "Fredoka", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    height: 100%;
    width: 100%;
}

body {
    background-color:darkslategray;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0px;
    background-image: url(bg.jpg);
    background-repeat: none;
    background-size: cover;
    background-position: center center;
}

.title-div {
    background-color: #ffffff33;
    padding: .5rem 1rem 1rem 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0px 0px 20px #00000055;
}

.title {
    color: white;
    font-weight: 200;
    font-size: 50px;
    margin: 0px;
}

.description {
    color: white;
    margin: 0px;
    font-size: 21px;
    margin-left: 2px;
}

.imprint-link {
    position: fixed;
    bottom: 1rem;
    color: white;
    opacity: 50%;
    text-decoration: none;
}


@media only screen and (max-width: 500px) {
    .title {
        font-size: 29px;
    }
    .description {
        font-size: 12px;
    }
}