* {
    box-sizing: border-box;
}

body {
/*  background-image: url('pic/OFFICE-HQ2.PNG'); */
   background-image: url('pic/BB-Wallpaper5.jpg');
/*  color-background: rgba(255,255,200,0.6); */
/*  background-blend-mode: lighten; */
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  font-family: Helvetica, Arial, Sans-Serif;
  font-size:15px;
  margin: 0;
}

.navbar {
  overflow: hidden;
  background-color: #333;
  font-family: Arial, Helvetica, sans-serif;
}

nav ul a {
  display: block;
  width: 8em;
  list-style-type:none;
}

.myDiv {
  border: 5px outset blue;
  background-color: lightyellow;  
  width: 22%; /* 275px; */
  position: fixed;
  top: 95px;
  right: 5px;
  text-align: left;
}
  
.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  display: block;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: blue;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font: inherit;
  margin: 0;
}

ul {
list-style-type:none;
}

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

.dropdown-content .header {
  background: blue;
  padding: 4px;
  color: white;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Create equal columns that floats next to each other */
.column {
  float: left;
  width: 12.5%;
  padding: 4px;
  background-color: #ccc;
  height: 575px;
}

.column a {
  float: none;
  color: black;
  padding: 6px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.column a:hover {
  background-color: #00f;
  font-weight: bold;
  color: yellow;
  text-decoration-line: underline;
  border-radius: 9px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.button {
  background-color: #00f; /* Blue */
  border: none;
  color: white;
  padding: 5px;
  text-align: center;
  text-decoration: none;
  font-weight: narrow;
  display: block;  /* instead of inline-block */
  font-size: 12px;
  margin: 4px 2px;
  cursor: pointer;
}

.button0 {border-radius: 2px; font-size:10px;}
.button1 {border-radius: 2px;}
.button2 {border-radius: 4px;}
.button3 {border-radius: 8px;}
.button4 {border-radius: 12px;}
.button5 {border-radius: 40%; width: 125px;}

.marquee {
    width: 100%;
    margin: 0 auto;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    display: inline-flex;    
}

.marquee span {
    display: flex;        
    flex-basis: 100%;
    animation: marquee-reset;
    animation-play-state: paused;                
}

.marquee:hover span {
    animation: marquee 2s linear infinite;
    animation-play-state: running;
}

@keyframes marquee {
    0% {
        transform: translate(0%, 0);
    }    
    50% {
        transform: translate(-100%, 0);
    }
    50.001% {
        transform: translate(100%, 0);
    }
    100% {
        transform: translate(0%, 0);
    }
}
@keyframes marquee-reset {
    0% {
        transform: translate(0%, 0);
    }  
}

.dark-mode {
  background-color: black;
  color: white;
}  

.small-font {
  font-size:12px;
}

.large-font {
  font-size:36px;
}    
