@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("../fonts/century/stylesheet.css");

:root {
    --primary: #8dc0b0;
    --primary-transparent: #8dc0b07d;
    --primary-tint: #bad9cf;
    --secondary: #06385a;
    --secondary-dark: #0c3048;
    --tertiary: #33373a;
    --warning: #ea4848;
    --gray: #797979;
    --background: rgba(196, 196, 196, 0.13);
    --border: #e9e4e5;
}

* {
    outline: none;
    box-sizing: border-box;
}

html{
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 16px;
    font-weight: normal;
    margin: 0;
    padding: 0;
}

figure,
p,
ul,
li {
    margin: 0;
    padding: 0;
}

ul {
    list-style-type: none;
}

body {
    margin: 0;
    padding: 0;
    background-color: #fff;
    width: 100%;
    color: var(--tertiary);
    position: relative;
    font-family: "Century Gothic";
    overflow-x: hidden;
}

article {
    width: 100%;
    max-width: 1264px;
    margin: 0 auto;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px var(--primary) inset;
    -webkit-text-fill-color: #fff;
}

::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 16px;
    background-color: #fff;
}

::-webkit-scrollbar-thumb {
    border-radius: 8px;
    border: 3px solid rgba(255, 255, 255, 0);
    background-clip: content-box;
    background-color: var(--secondary);
}

::-webkit-scrollbar-corner {
    background-color: #e6e6e6;
}
