html {
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
}

.navigation {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    width: 100%;
    background-color: mediumvioletred;
    padding: 1rem;
    transition: all ease-in-out 110ms;
    z-index: 999;
}

.navigation:hover {
    background-color: rgb(169, 8, 110);
    transition: all ease-in-out 110ms;
}

.split {
    display: flex;
    flex-direction: column;
}

.section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 36px 32px;
}

.form {
    background-color: #f8f8f8;
}

.wrapper {
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: 140px;
    filter: invert(100%);
}

.text-overline {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 0;
}

.copy {
    font-size: 18px;
    line-height: 150%;
    color: #252525;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #cf0685;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    font-weight: 600;
    transition: all 150ms linear;

}

a:hover {
    color: rgb(244, 31, 166);
    transition: all 200ms linear;
}

a:focus {
    transition: all 150ms linear;
    outline: 4px solid blue;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mock {
    width: 240px;
    margin-bottom: 2rem;
}

.text-heading {
    font-size: 2rem;
    font-family: 'Staatliches', sans-serif;
    text-align: center;
    font-size: 3.5rem;
    line-height: 90%;
    margin-bottom: 2rem;
    background: #C71585;
    background: -webkit-linear-gradient(to right, #C71585 0%, #881CC7 100%);
    background: -moz-linear-gradient(to right, #C71585 0%, #881CC7 100%);
    background: linear-gradient(to right, #C71585 0%, #881CC7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

ul {
    margin-left: 1.5rem;
    list-style-type: square;
    font-weight: 700;
    margin-bottom: 1rem;
}

li {
    margin-bottom: .5rem;
    background: #C71585;
    background: -webkit-linear-gradient(to right, #C71585 0%, #881CC7 100%);
    background: -moz-linear-gradient(to right, #C71585 0%, #881CC7 100%);
    background: linear-gradient(to right, #C71585 0%, #881CC7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.konsultacje {
    margin-top: 1rem;
    background-color: #fcecf5;
    padding: 1rem 2rem;
    border: 1px solid #e776be;
    border-radius: 1rem;
}

.konsultacje p {
    color: #76034c;
    margin: 0;
    padding: .5rem 0;
}



@media screen and (min-width: 768px) {
    body {
        height: 100vh;
        width: 100%;
    }

    .logo {
        width: 164px;
    }

    .split {
        flex-direction: row;
        flex-grow: 1;
    }

    .section {
        width: 60%;
    }

    .copy {
        font-size: 20px;
    }

    .form {
        width: 40%;
    }
}

@media screen and (min-width: 1200px) {
    .wrapper {
        max-width: 800px;
    }

    .section {
        padding-left: 40px;
        padding-right: 40px;
    }

    .content {
        flex-direction: row;
        align-items: start;
    }

    .mock {
        width: 350px;
        margin: 0;
    }

    .copy {
        padding-top: 1rem;
    }

    .text-heading {
        font-size: 4.5rem;
    }
}