@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@500;700&family=Open+Sans:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    margin: auto;

}

h1 {
    font-family: 'Dosis', sans-serif;

}

.page {
    width: 100vw;


}

main {
    padding-top: 64px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
}

main h1 {
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 40px;

    color: #3F3D56;

    margin-top: 32px;
}

main h1 span {
    color: #EE24FF;
    font-weight: 700;
}

main p {
    width: 540px;

    font-weight: 400;
    font-size: 15px;
    line-height: 22px;

    color: #828282;

    margin-top: 16px;

    margin-bottom: 40px;
}

main p strong {
    color: #3F3D56;
}

main p span {
    font-weight: 700;
}

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

.line {
    width: 390px;

    border: 1px solid #ECEFF2;
}

nav ul {
    display: flex;
    gap: 42px;

    list-style: none;

    margin-top: 16px;
}

ul li a {
    font-weight: 700;
    font-size: 15px;
    line-height: 22px;

    text-decoration: none;
    color: #3F3D56;

}

ul li a:hover {
    color: #EE24FF;
    text-decoration: underline;
}

#wave {
    position: fixed;
    width: 100vw;

    z-index: -1;

    margin-top: 55px;
}