@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('./owl.carousel.min.css');
@import url('./aos.css');
@import url('./app.css');

:root {
    --font-family: "Inter", sans-serif;
    --blackColor: 0, 0, 0;
    --whiteColor: 255, 255, 255;
    --primaryColor: 30, 28, 89;
    --pinkColor: 216, 89, 251;
    --greenColor: 112, 237, 187;
    --purpleColor: 164, 161, 255;
    --smallFontSize: 14px;
    --baseFontSize: 16px;
    --regularFontSize: 18px;
    --mediumFontSize: 24px;
    --largeFontSize: 30px;
    --xlFontSize: 40px;
    --Animation300: 300ms all;
    --container-width: 1190px;
}

body {
    margin: 0;
    font-family: var(--font-family);
    font-size: var(--baseFontSize);
    color: rgb(var(--blackColor));
    line-height: 31px;
    font-weight: 300;
    overflow-x: hidden;
    background: rgb(var(--primaryColor));
    height: 100%;
    display: flex;
    flex-direction: column;
    color: rgb(var(--whiteColor));
}

p {
    font-size: var(--regularFontSize);
    line-height: 34px;
}

main {
    flex: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

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

*:focus {
    outline: none;
}

button,
input[type=button] {
    cursor: pointer;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

a,
button {
    transition: var(--Animation300);
}

p+p {
    margin-top: 15px;
}

a,
a:hover {
    text-decoration: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}


h1 {
    font-size: var(--xlFontSize);
    line-height: 52px;
}