body{
  margin:0;
  padding:0;
  font-family: arial;
}
nav{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height:100px;
  padding:10px 90px;
  box-sizing:border-box;
  background: #446daa;

}
nav .logo{
  padding:22px 20px;
  height:80px;
  float: left;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
}
nav ul{
  list-style:none;
  float:right;
  margin:0;
  padding:0;
  display:flex;
}
nav ul li a{
  line-height: 80px;
  color: #fff;
  padding: 12px 30px;
  text-decoration:none;
  text-transform: uppercase;
  font-size: 15px;
  font-weight:bold;
}
nav ul li a:hover{
  background:line;
  border-radius:6px;
  color:#000;
}
nav ul li a.active{
  background: #e2472f;
  border-radius: 6px;
}
/*dropdown*/

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.dropdown-content a {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: center;
}

.dropdown:hover .dropdown-content {
  display: block;
}
.sec1{
  background-image: url(../images/microsystem_labs.jpg);
  background-repeat: no-repeat;
  background-size:cover;
  background-position:center;
  width:100%;
  height: 100vh;
}
/*text overlay*/
.text-overlay {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
}

.text-overlay h1 {
  display: block;
  font-size: 36px;
  margin-bottom: 20px;
}

.text-overlay p {
  font-size: large;
  display: block;
  font-size: 18px;
  position: relative;
  padding-top: 400px;
} 
/*animation*/
.cover {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100vh;
  position: relative;
  /* background-image: url('../images/microsystem_labs.jpg'); */
  background-size: cover;
  background-position: center;
}

.animated-text {
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  color: black;
  opacity: 0;
  animation: fade-in 2s ease-out forwards;
}


@keyframes fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

footer {
  background-color: lightgray;
  padding: 20px ;
  text-align: center;
}

.footer-container {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.footer-content p {
  margin: 0;
  text-align: left;
}

.footer-content ul {
  list-style-type: none;
  padding: 0;
  text-align: left;
}

.footer-content li {
  display: inline-block;
  margin-left: 10px;
  text-align: center;
}

.footer-content li:first-child {
  margin-left: 0;
  text-align: center;
}

p {
  margin: 0;
 
}

