@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100vh;
    overflow: hidden;

    background-color: rgba(14, 54, 25, 1);

    background-image: radial-gradient(
        ellipse 55% 35% at 50% 50%,
        rgba(5, 35, 15, 0.95) 0%,
        rgba(7, 42, 18, 0.75) 35%,
        rgba(10, 48, 22, 0.35) 65%,
        rgba(14, 54, 25, 0) 100%
    );
}

.container {
    width: 100%;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* TRAUM + LOGO + SPINNER */
/*.title {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    max-width: 100vw;

    color: white;
    font-family: Algerian;
    font-size: clamp(1rem, 9vw, 12rem);
    font-weight: bold;

    white-space: nowrap;
    line-height: 1;
}
*/

.title {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    color: white;
    font-family: Algerian;
    font-size: clamp(1rem, 9vw, 12rem);
    font-weight: bold;

    white-space: nowrap;
    line-height: 1;

    z-index: 1;
}



/* Logo */
.logo {
    width: 20vw;
    height: 20vw;

    object-fit: contain;

    margin-left: 0vw;
    margin-right: 0vw;

    flex-shrink: 0;
}

/* Text */
.title span {
    flex-shrink: 0;
}
