/* Fonts */
@font-face {
  font-family: 'Bradhi';
  src: url('./fonts/BRADHI.ttf');
}

@font-face {
  font-family: 'Magneto';
  src: url('./fonts/MAGNETOB.TTF');
}

@font-face {
  font-family: 'OpenSansReg';
  src: url('./fonts/OpenSans-Regular.ttf');
}

/* Colors */
:root {
  --main-color: #183884;
  --main-compl-color: #ffff01;
  --secondary-color: #40a0ff;
  --dark-grey: #303440;
  --light-grey: #e5e5e5;
  --accent-1: #ff7f2a;
  --accent-2: #ca6522;
  --white: #fff;
}

body, button, input, select, textarea {
    color: #444444;
    font-size: 16px;
    font-family: "Open Sans", serif;
    line-height: 1.6;
    word-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
    padding-bottom: 18px;
    color: #333333;
    font-weight: normal;
    font-family: "Open Sans", sans-serif;
}

input[type="reset"], input[type="button"], input[type="submit"] {
  margin-bottom: 30px;
  padding: 5px 10px;
  background-color: var(--main-color);
  border: 0;
  -webkit-transition: background-color 0.3s linear 0s;
  transition: background-color 0.3s linear 0s;
  border-radius: 3px;
  font-size: 16px;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  cursor: pointer;
  display: inline-block;
  color: #fff;
}
input[type="reset"]:hover, input[type="button"]:hover, input[type="submit"]:hover {
  background-color: #33363b;
  color: #fff;
}