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

/*=============== Load fonts =================*/

@font-face {
    font-family: "Mona Sans";
    src:
        url("/fonts/MonaSans/variable/MonaSans[wdth,wght].ttf")
            format("truetype supports variations"),
        url("/fonts/MonaSans/variable/MonaSans[wdth,wght].ttf")
            format("truetype-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";
    font-style: italic;
    font-weight: 200 900;
    src: url("/fonts/Source_Code_Pro/SourceCodePro-Italic-VariableFont_wght.ttf")
        format("truetype");
}

/*=============== Base styles ================*/

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

html,
body {
    background-color: #000000;
}

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: #d8d8d8;
    color: black;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
}

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

/*====== Style for noscript fallback =========*/

noscript {
    width: 100%;
    height: 100%;
    z-index: 1000;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000000;
    color: white;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    font-weight: 500;
    font-size: 14px;
}

noscript img {
    width: 48px;
    height: 48px;
    opacity: 0.4;
    margin-bottom: 20px;
}

/*======= Style for react container ==========*/

#root {
    z-index: 0;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
    background-color: #d8d8d8;
    color: black;
    overflow: hidden;
}
