@font-face {
    font-family: "source-pro";
    src: url("/fonts/source-serif-pro-latin-600-normal.woff2") format("woff2")
}

@font-face {
    font-family: "lexend-deca";
    src: url("/fonts/lexend-deca-latin-400-normal.woff2") format("woff2")
}

body {
    margin: 0;
    padding: 0;
    background-color: #f3f4ff;
}

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
    min-width: 1075px;
}

.logo {
    height: 56px;
    display: flex;
    align-items: center;
    img {
        width: 120px;
        height: 21px;
    }
}

.billboard {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.billboard > div:first-child, .billboard > div:last-child {
    flex-grow: 0;
    flex-shrink: 1;
    display: flex;
    align-items: center;
}

.big-circle {
    background-color: #cfe8ca;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    gap: 16px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.text {
    color: #150e56;
    text-align: center;
}

.message-big {
    width: 250px;
    font-family: "source-pro";
    font-size: 42px;
    line-height: 39px;
}

.message-normal {
    font-family: "lexend-deca";
    font-size: 16px;
    line-height: 100%;
}

.message-small {
    font-family: "lexend-deca";
    font-size: 12px;
    line-height: 100%;
}

