*,::after,::before {
    box-sizing: border-box;
}

.see {
    border: black 1px solid;
}

body {
    margin: 0;
    background-image: radial-gradient(hsl(206, 100%, 40%),hsl(206, 100%, 60%));
}

.flex {
    display: flex;
}

img {
    width: 30%;
}

.wrapper {
    margin: auto;
    max-width: 960px;
    padding: 0px 2rem;
    flex-direction: column;
    align-items: center;
    min-height: 100svh;

    div {
        flex: 1;
        
        width: 100%;
    }
    div.logo-mark {
        flex: 2;
        /* border: 1px black solid; */
        /* width: 100%; */
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

    div.logo-text {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        color: white;
        font-family: Raleway, sans-serif;
        

        p.text{
            /* font-family: Raleway, sans-serif; */
            font-size: 6rem;
            line-height: 1;
            margin-bottom: 0;
            flex-wrap: wrap;
        }
    }

    div.wip {
        color: white;
        align-items: center;
        flex-direction: column;
        font-family: Raleway, sans-serif;
        font-size: 0.8rem;
    }
}



