@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap');

:root{
    --primary-colour: #0091c9;
    --accent-colour-light: #a7e6ff;
    --background-colour-light: #f5f7fa;
    --icon-colour-light: #ebeff0;
    --icon-colour-dark: #94a4a5;
    --secondary-colour: #444444;
}

html {
    scroll-behavior: smooth;
}

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

sup {
    font-size:xx-small;
    vertical-align:super;
}

#superscript-1{
    font-size: 0.7rem;
}

b {
    font-weight: bold;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: var(--background-colour-light);
    color: #333;
    line-height: 1.6;
}

ul {
    list-style: none;
}

a {
    color: var(--secondary-colour);
    text-decoration: none;
}


/* Text colors */

.text-primary {
    color: var(--accent-colour-light);
}

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

/* Misc Elements */
.page-anchor{
    scroll-margin-top: 7vh;
}

.inline-anchor-link{
    text-decoration: underline;
}

.inline-anchor-link:hover{
    color: var(--primary-colour);
}

.with-blur-backdrop{
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(0.25rem);
    -webkit-backdrop-filter: blur(0.25rem);
    height: inherit;
    width: inherit;
}


.button-1 {
    align-items: center;
    appearance: none;
    background-color: white;
    border-radius: 1.5rem;
    border-style: none;
    box-shadow: rgba(0, 0, 0, .2) 0 3px 5px -1px,rgba(0, 0, 0, .14) 0 6px 10px 0,rgba(0, 0, 0, .12) 0 1px 18px 0;
    box-sizing: border-box;
    color: var(--secondary-colour);
    cursor: pointer;
    display: inline-flex;
    fill: currentcolor;
    font-size: 1rem;
    font-weight: 750;
    height: 5vh;
    justify-content: center;
    letter-spacing: 0.025rem;
    line-height: normal;
    max-width: 100%;
    overflow: visible;
    padding: 1vh 3vh;
    position: relative;
    text-align: center;
    text-transform: none;
    touch-action: manipulation;
    transition: box-shadow 280ms cubic-bezier(.4, 0, .2, 1),opacity 15ms linear 30ms,transform 270ms cubic-bezier(0, 0, .2, 1) 0ms;
    user-select: none;
    -webkit-user-select: none;
    width: auto;
    will-change: transform,opacity;
    z-index: 0;
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    .button-1{
        height: 10vh;
        padding: 5vh 6vw;
    }
}

.button-wrapper{
    margin: auto 2.5vw;
    display: flex;
    align-content: center;
    justify-content: center;
}

.button-1:hover {
  background: #F6F9FE;
  color: var(--primary-colour);
}

.button-1:active {
  box-shadow: 0 4px 4px 0 rgb(60 64 67 / 30%), 0 8px 12px 6px rgb(60 64 67 / 15%);
  outline: none;
}

.button-1:focus {
  outline: none;
  border: 2px solid #4285f4;
}

.button-1:not(:disabled) {
  box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
}

.button-1:not(:disabled):hover {
  box-shadow: rgba(60, 64, 67, .3) 0 2px 3px 0, rgba(60, 64, 67, .15) 0 6px 10px 4px;
}

.button-1:not(:disabled):focus {
  box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
}

.button-1:not(:disabled):active {
  box-shadow: rgba(60, 64, 67, .3) 0 4px 4px 0, rgba(60, 64, 67, .15) 0 8px 12px 6px;
}

.button-1:disabled {
  box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
}
