﻿body {
    background-color: #fff;
    color: #000;
    font-family: Segoe UI,Tahoma,Verdana,Arial,sans-serif;
    margin: 15px;
}

a {
    color: #0067B8;
    text-decoration: none;
    margin: 0;
}

a:visited {
    color: #0067B8;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a img { border-width:0px;}        
h1 { font-size: 1.8em;font-weight: normal; font-family: Segoe UI Light, Segoe UI,Tahoma,Verdana,Arial,sans-serif; }        
.focusSection {
    padding:10px; -moz-border-radius: 5px; -webkit-border-radius: 5px; border: solid 1px #fff;
}
input[type=button] {
    color: #ffffff;
    background-color: #0c86c5;
    border: none;
    padding: 5px 10px;
    -webkit-appearance: none;
}

input[type=button]:hover {
    background-color: #269cd9;
}

input[type=button]:active {
    background-color: #0e73a7;
}

#detecting {
    margin: auto;
    position: absolute;
    height: 100px;
    top: 50px;
    left: 50px;
    bottom: 50px;
    right: 50px;
}

.detectingText {
    margin-left: 95px;
    margin-top: 12px;
    font-size: 32px;
    font-weight: lighter;
}

.gear1 {
    position: absolute;
    left: 29px;
    width: 55px;
    height: 55px;
    animation: spin-reverse 5s linear infinite;
}

.gear2 {
    position: absolute;
    top:30px;
    width: 42px;
    height: 42px;
    animation: spin 5s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin-reverse {
    0% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

body.theme-Dark {
    background-color: #323232;
    color: #fff;
}

body.theme-Dark a {
    color: #00ffff;
    text-decoration: none;
    margin: 0;
}

body.theme-Dark a:visited {
    color: #00ffff;
    text-decoration: none;
}

body.theme-Dark a:hover {
    text-decoration: underline;
}