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

:root {
    --main-blue: #006EFF;
    --main-orange: #FF9100;
    --light-white: #FAFAFA;
}

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

html {
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    width: 100%;
    min-height: 100vh;
    background-color: var(--light-white);
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.anchor {
  display: block;
  height: 100px;
  margin-top: -100px;
  visibility: hidden;
}

h1 {
    font-size: max(30px, min(4vw, 50px));
}

h2 {
    font-size: max(25px, min(3vw, 40px));
}

h3 {
    font-size: max(22px, min(2.5vw, 36px));
}

h4, p {
    font-size: max(16px, min(1.5vw, 19px));
}

h1, h2, h3 {
    font-family: "Albert Sans", sans-serif;
    text-align: center;
}

h2, h3 {
    color: var(--main-blue);
}

hgroup > *:not(:last-child) {
    padding-bottom: 3vh;
}

a {
    text-decoration: none;
    font-size: max(16px, min(1.5vw, 19px));
}

a:not(.btn), a:visited:not(.btn) {
    color: #000000;
}

a.active {
    color: var(--main-blue);
}

.btn {
    display: block;
    color: #FFFFFF;
    background-color: var(--main-orange);
    font-family: "Albert Sans", sans-serif;
    font-size: max(16px, min(1.5vw, 19px));
    font-weight: 700;
    padding: 15px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: scale .1s ease-out;
}

.inv-col {
    color: var(--main-orange);
    background-color: #FFFFFF;
    border: solid 2px var(--main-orange);
}

.btn:hover, .btn:focus {
    scale: 1.1;
}