@font-face {
    font-family:glacial indifference;
    font-style:normal;
    font-weight:400;
    src:local('Glacial Indifference'),
    url(../font/GlacialIndifference-Regular-default-font.woff) format('woff')
}

@font-face {
    font-family:glacial indifference;
    font-style:normal;
    font-weight:700;
    src:local('Glacial Indifference'),
    url(../font/GlacialIndifference-Bold-default-font.woff) format('woff')
}

/* Google Symbols : Camera Stream Dashboard */
@font-face {
    font-family: 'Material Symbols Outlined';
    font-style: normal;
    font-weight: 100 700;
    src: url(../font/Google-symbols.woff2) format('woff2');
  }
  
  .material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -moz-font-feature-settings: 'liga';
    -moz-osx-font-smoothing: grayscale;
  }
  
body {
    /* background-color: #39424b;  */
    /*#39424b grey*/
    /* commed out for dark mode button, colour defined in javascrip toggle mode funciton*/
    /* Raima blue - #11153A*/
    font-family: 'Glacial Indifference', sans-serif;
    margin: 0;
    padding: 45px;
    text-align: center;
}

/* Neurospace logo */
.image-container img {
    width: 688px;
    height: 131px;
}
  
/*=============== BREAKPOINTS ===============*/
/* For mobile devices */
@media screen and (max-width: 480px) and (orientation: portrait) {
    body {
        padding: 1em;
        margin-top: 1em;

    }
    .image-container img {
        width: 100%; 
        height: auto; 
    }
}

@media screen and (max-width: 480px) and (orientation: landscape) {
    body {
        padding: 1em;
        margin-top: 1em;

    }
    .image-container img {
        width: 100%; 
        height: auto; 
    }
}

/* For tablets */
/* @media screen and (max-width: 768px) {
    .image-container img {
        width: 100%; 
        height: auto; 
    }
} */

/* For anything larger e.g.work monitor */
@media screen and (min-width: 2000px) {
    body {
        padding: 200px;
    }
    .image-container img {
        width: 688px;
        height: 131px;
    }
}

