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

:root {
    --font-family: "Inter", sans-serif;
    --blackColor: 0, 0, 0;
    --whiteColor: 255, 255, 255;
    --primaryColor: 2, 6, 69;
    --secondaryColor: 33, 33, 33;
	--darkGrayColor: 244, 244, 244;
    --Animation300: 300ms all;
	--container-width: 1200px;
}

body {
	margin:0;
	font-family: var(--font-family);
	font-size:16px;
	color:rgb(var(--secondaryColor));
	line-height: 24px;
	letter-spacing: 0.4px;
}

html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
}

p {
    font-size: 16px;
    line-height: 24px;
}

main {
    flex: 1;
}

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

*:focus {
	outline:none;
}

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

ul {
	margin:0;
	padding:0;
}

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

li {
    list-style: none;
}

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

textarea, input, button {
    font-family: var(--font-family);
}

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