body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    background-color: #0D092C;
}

.header-container {
    background-color: #201B40;
    padding: 18px;
    text-align: center;
}

.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 120px 20px 0;
    color: #F8F8FB;
    gap: 250px;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 360px;
}

.main-image {
    width: 100%;
}

.main-content__title {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.main-content__title-2 {
    font-size: 20px;
    margin: 6px 0 0;
    font-weight: 700;
}

.main-content__subtitle {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    margin: 24px 0 40px;
}

@media screen and (max-width: 1100px) {
    .main-container {
        gap: 100px;
    }
}

@media screen and (max-width: 768px) {
    .header-container img {
        max-width: 146px;;
    }
    .main-content__subtitle {
        font-size: 14px;
    }
    .header-container {
        background-color: #0D092C;
        border-bottom: 1px solid #201B40;
    }
    .main-container {
        flex-direction: column;
        gap: 40px;
        margin: 40px 20px 0;
    }
    .main-content__title {
        font-size: 24px;
    }
}

