@font-face {
    font-family: "Mazzard soft H";
    src: url(../fonts/MazzardSoftH-Medium.otf);
}

:root {
    --main-color: #6986EF;
    --text-color: #333333;
    --white-color: #fff;
    --black-color: #000;
    --box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

    --weight-bold: 700;
    --weight-normal: 500;

    --red-light: #FFE7E6;
    --yellow-light: #FFF7D5;
    --sprint-green-light: #DEFFFA;
    --blue-light: #E6F5FF;
    --green-light: #EEFFF1;
    --purple-light: #F6EEFF;

    --red: #EC605B;
    --yellow: #E8CF64;
    --sprint-green: #67C9B9;
    --blue: #64ACDB;
    --green: #72D081;
    --purple: #AA76DE;

    --font-primary: "Mazzard soft H";
    --font-secondary: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    position: relative;
    font-family: var(--font-primary);
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--text-color);
}

button {
    border: none;
    outline: none;
    padding: 16px 30px;
    background-color: var(--main-color);
    color: var(--white-color);
    border-radius: 12px;
    font-size: 20px;
    line-height: 24px;
    font-weight: var(--weight-bold);
    font-family: var(--font-secondary);
    cursor: pointer;
    transition: .3s all ease-in-out;
}

button a {
    color: var(--white-color);
}

button:hover {
    background-color: #001636;
}

input,
textarea {
    outline: none;
    border: none;
    color: #ff0000;
}