a {
    text-decoration: none
}
/*****************************************
               login bar
*****************************************/
#login a {
    color: white;
    font-size: 20px;
    float: right;
    margin-right: 25px;
    border-bottom: 1px solid white;
    margin-top: 5px;
}
#welcome{
    float: right;
    margin-top: 5px;
    margin-right: 20px;
    font-size: 20px;
    color: white;
}
#login #main{
    color: white;
}
#pic{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    float: right;
    margin-top: 8px;
    margin-right: 20px;
}
/*****************************************
                 logo
*****************************************/
.header {
    padding: 1px;
    text-align: center;
    background: rgb(194, 27, 52);
    color: white;
}

.header h1 {
    font-family: 'Times New Roman';
    margin: 20px;
    color: #FFFAFA;
    font-size: 80px;
    clear: both;
    cursor:default;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
}
/*****************************************
                 guidebar
*****************************************/
.guidebar {
    overflow: hidden;
    background-color: #111111;
}
.guidebar a{
    float: left;
    overflow-y: hidden;
    display: inline-block;
    color: #FFFAFA;
    text-align: center;
    padding: 13px 25px;
    text-decoration: none;
    transition: 0.3s;
    font-size: 18px;
}
.dropdown {
    float: right;
    overflow: hidden;
}

.dropdown .dropbtn {
    font-size: 18px;
    color: #FFFAFA;
    padding: 13px 25px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
    transition: 0.3s;
    border: none;
    outline: none;
}

.guidebar a:hover, .dropdown:hover .dropbtn {
    background-color: #fff;
    color: black;
    transition: 0.3s;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #000;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    width: 200px;
    float: left;
    color: white;
    padding: 13px 25px;
    overflow-x: hidden;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #fff;
    color: #000;
    transition: 0.3s
}

.dropdown:hover .dropdown-content {
    display: block;
    transition: 0.3s;
}
