* {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
    --font-family-base: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
    -webkit-text-size-adjust: 100%;
    height: 100%;
}

body {
    margin: 0;
    font-family: var(--font-family-base);
    font-size: 100%;
    font-size: 1rem;
    line-height: 1.625;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    color: #232323;
    height: inherit;
    background-color: #08126D;
    /* background-color: black; */
}

.logo {
    width: 100px;
    margin-bottom: 1rem;
}

.logo svg {
    color: #0FFFB2;
}

.o-grid {
    display: grid;
}

main {
    height: 100%;
    justify-content: center;
    align-content: center;
}

.btn-link {
    color: white;
    text-decoration: none;
    display: flex;
}

.btn-link svg {
    fill: #0fffb2;
    width: 25px;
    position: relative;
    top: 1px;
    display: block;
    margin-left: 6px;
}
