@import url('https://fonts.googleapis.com/css?family=Inter:400,600|Rubik:700&display=swap');

:root {
    --main-accent: #FFCF00;
    --main-accent-light: #FFDE49;
    --main-accent-dark: #FFDE49;
    --secondary-accent: #CE354E;
    
    --secondary-black-text: #555555;
    --secondary-white-text: #D7D7D7;
    
    --interface-colour: #EBEBEB;
}

html {font-size: 125%;} /*20px*/

body, button, textarea, input {
  background: white;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.75;
  font-size: 1rem;
  color: #000000;
}

p {margin-bottom: 1rem;}

h1, h2, h3, h4, h5 {
  margin: 3rem 0 1.38rem;
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

h1 {
  margin-top: 0;
  font-size: 2.488rem;
}

h2 {font-size: 2.074rem;}

h3 {font-size: 1.728rem;}

h4 {font-size: 1.44rem;}

h5 {font-size: 1.2rem;}

small, .text_small {font-size: 0.833rem;}

a {
    color: inherit;
    font-weight: bold;
    text-decoration: underline;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0px;
    padding: 0px;
}

.button {
    margin: 0px 10px;
    padding: 5px 15px;
    border-radius: 20px;
    border: solid 3px black;
    background-color: var(--main-accent-light);
    transition: 0.3s;    
    text-decoration: none;
    text-align: center;
    color: black;
    font-weight: normal;
}

.button:hover {
    box-shadow: -4px 9px 0px black;
    transform: translateX(10px);
    transform: translateY(-10px);
    background-color: var(--main-accent-dark);
}

.secondary-white {
    color: var(--secondary-white-text);
}

.secondary-black {
    color: var(--secondary-black-text);
}

::-webkit-input-placeholder {
  color: var(--secondary-black-text);
}

:-ms-input-placeholder {
  color: var(--secondary-black-text);
}

::placeholder {
  color: var(--secondary-black-text);
}

footer {
    background-color: #191919;
    min-height: 10vh;
    color: #A6A6A6;
    display: flex;
    flex-direction: column;
    font-size: 11px;
    text-align: center;
    padding-top: 10px;
}

footer #footer-logo {
    margin: 0px auto;
}

footer img {
    height: auto;
    max-width: 70%;
}

footer #footer-text {
    padding: 0px 10px 0px;
    margin: 0px auto;
}