* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: Helvetica;
}

button:focus {
    outline: 0;
}

button {
    border: 0;
}

input:focus {
    outline: 0;
}

input[type="radio"] {
    width: 12px;
    height: 12px;
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */
       -khtml-user-select: none; /* Konqueror HTML */
         -moz-user-select: none; /* Old versions of Firefox */
          -ms-user-select: none; /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome, Opera and Firefox */
}

/* index page styling */

#particles-js {
    height: 100%;
    background-color: #262626;
}

/* login styling */

#login-container {
    background-color: white;
    position: fixed;
    width: 320px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 15px 10px;
    border-radius: 8px;
}

#login-container p {
    text-align: center;
    margin: 0 0 10px 0;
}

#login-container input {
    width: 100%;
    padding: 8px 4px;
}

#login-container input[type="text"] {
    border: 0;
    border-top: 2px solid #1b5e20;
    border-left: 2px solid #1b5e20;
    border-right: 2px solid #1b5e20;
    border-radius: 8px 8px 0 0;
}

#login-container input[type="password"] {
    border: 0;
    border-top: 1px solid rgba(0,0,0,0.4);
    border-bottom: 2px solid #1b5e20;
    border-left: 2px solid #1b5e20;
    border-right: 2px solid #1b5e20;
    border-radius: 0 0 8px 8px;
}

#login-container input[type="submit"] {
    margin-top: 10px;
    border: 0;
    border-radius: 8px;
    background-color: #1b5e20;
    color: white;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
}

/* login styling */

/* index page styling */


/*header styling*/

.header {
    width: fit-content;
    margin: 0 auto;
}

.header a {
    color: white;
    text-decoration: none;
}

.header p {
    display: inline-block;
    margin: 0;
    padding: 8px 16px;
    background-color: #1b5e20;
    letter-spacing: 1.5px;
}

#headerhr {
    border-top: 2px solid #ddd;
    box-shadow: 1px 1px 5px #ddd;
    margin: 0;
}

/*header styling*/

/*responsive styling*/

@media only screen and (max-width: 450px) {

    /*header styling*/

    .header {
        font-size: 0.8em;
    }

    /*header styling*/

}

/*responsive styling*/