*,
body,
html,
p,
span,
h1,
h2,
h3,
h4,
h5,
h6,
strong,
li {
    font-weight: bold;
    font-style: normal;
    text-align: initial;
    font-family: var(--primary-font);
    letter-spacing: .8px;
}

:root {
    --primary: #825af5;
    --white: #fff;
    --bg-color: #fbfbfd;
    --text-dark: #222d39;
    --text-light: #677294;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    width: 100%;
    background: var(--bg-color);
    font-family: Poppins;
}

.banner {
    background: url('../images/bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 100vh;
}

.banner h1 {
    color: var(--white);
    font-size: 68px;
    margin: 0;
    font-weight: 600;
}

.logo img {
    max-width: 220px;
}

.banner p {
    margin: 0;
    color: var(--white);
    font-weight: 500;
    background: #000000;
    font-size: 19px;
    padding: 5px 12px;
    margin-bottom: 7px;
    width: fit-content;
}

@media (min-width: 992px) {
    .banner h1 {
        font-size: 90px;
    }
    .logo {
        position: absolute;
        top: 70px;
    }
}