@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&amp;display=swap");

:root {
    --primary: #1C1C25;
    --secondary: #797E88;
    --border: #E5E5E5;
    --theme: #00aeef;
    --black: #1C1C25;
    --black-2: #4f5259;
    --white: #FFFFFF;
    --white-2: #A7ACB5;
    --action: #6421FF;
}

/* typography css */
/* inter  */
/* general sans  */



:root {
    --font_inter: "mulibold";
    --font_generalsanssemibold: "GeneralSans-Semibold";
    --font_generalsansmedium: "GeneralSans-Medium";
    --font_generalsansitalic: "GeneralSans-Italic";
    --font_awesome: "Font Awesome 6 pro";
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'muliregular';
    font-weight: 400;
    background: url(../imgs/bg.jpg) center top no-repeat;
    background-size: cover;
    font-size: 16px;
    line-height: 26px;
    color: var(--secondary);
}


.logo {
    padding: 250px 0;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

    .logo img {
        width: 400px;
        padding-bottom: 50px;
    }

    .logo h1 {
        font-size: 50px;
        color: #fff;
        text-align: center;
    }
