/*==============================================
 ______          _           
|___  /         | |          
   / / _   _  __| |_ __ ___  
  / / | | | |/ _` | '__/ _ \ 
./ /__| |_| | (_| | | | (_) |
\_____/\__, |\__,_|_|  \___/ 
        __/ |                
       |___/              
Zydro Marine Technologies, Inc.
www.zydromarine.com
==============================================*/

@font-face {
    font-family: 'Mona Sans';
    src:
      url('/fonts/MonaSans/Mona-Sans.woff2') format('woff2 supports variations'),
      url('/fonts/MonaSans/Mona-Sans.woff2') format('woff2-variations');
    font-weight: 200 900;
    font-stretch: 75% 125%;
  }

@font-face {
    font-family: 'Hubot Sans';
    src:
        url('/fonts/HubotSans/Hubot-Sans.woff2') format('woff2 supports variations'),
        url('/fonts/HubotSans/Hubot-Sans.woff2') format('woff2-variations');
    font-weight: 200 900;
    font-stretch: 75% 125%;
    }

@font-face {
    font-family: 'Source Code Pro';
    src:
        url('/fonts/SourceCodePro/SourceCodePro-VariableFont-wght.ttf') format('ttf');
    font-weight: 200 900;
    font-style: normal;
}

@font-face {
    font-family: 'Source Code Pro';
    src:
        url('/fonts/SourceCodePro/SourceCodePro-Italic-VariableFont-wght.ttf') format('ttf');
    font-weight: 200 900;
    font-style: italic;
}


body {
    margin: 0;
    font-family: 'Hubot Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: white;
    color: rgba(12, 12, 12, 1.0);
    overflow-y: auto;
}

noscript {
    width: 100%;
    height: 100%;
    z-index: 1000;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    color: rgba(12, 12, 12, 0.92);
    overflow-y: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

code {
    font-family: "Source Code Pro", Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

* {
    user-select: none;
    box-sizing: border-box;
}

.cta-docs-button {
    display: block;
    color: rgb(25, 25, 25);
    margin: 0px;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 25px;
    padding: 10px;
    padding-left: 20px;
    padding-right: 40px;
    box-sizing: border-box;
    position: relative;
}
.cta-docs-button::after {
    opacity: 0.4;
    content: '';
    display: block;
    position: absolute;
    top: 12px;
    right: 14px;
    width: 20px;
    height: 20px;
    background-image: url('/images/arrow-top-right-black.svg');
}


#root {
    z-index: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
}

