body{
  background-color: aliceblue;
}


.navbar {
  position: fixed;
  display: flex;
  background-color: #08090A;
  font-family: Arial;
  top: 0;
  left: 0;
  z-index: 1;
  width:100%;
}


.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.dropdown {
  float: left;
}

.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit; 
  margin: 0; 
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: rgb(141, 153, 209);
}

.dropdown-content {
  display: none;
  position: fixed;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: rgb(141, 153, 209);
}

.dropdown:hover .dropdown-content {
  display: block;
}

.maindiv{
  filter: drop-shadow(10px 10px 10px rgb(0, 0, 0));
  background-color: #7CC6FE;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 80px;
  margin-right: 80px;
  margin-top: 125px;
  border-radius: 40px;
  opacity: 92%;
}

h1{
  text-shadow: 3px 3px 6px #535353;
  text-align: center;
  font-family: 'Courier New', Courier, monospace;
  font-size: xx-large;
  font-weight:800;
}

p{
  text-align: center;
  font-family: 'Courier New', Courier, monospace;
  font-size: xx-large;
  font-weight:600;
}


.divDESPRENOI{
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  margin-bottom: 40px;
  padding: 40px;
  font-family: 'Courier New', Courier, monospace;
  font-weight:600;
}

.divECHIPA{
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin-top: 10px;
  padding: 40px;
  text-align: center;
  font-family: 'Courier New', Courier, monospace;
  font-weight:600;
}

.TABEL{
  font-family: 'Courier New', Courier, monospace;
  font-weight:600;
		width: 98%;
		color:rgb(0, 0, 0);
		margin-left: 13px;
    text-align: center;
	}
	.rand:nth-child(2n) {
  	background: rgb(25, 3, 77);
    color:white;
	} 
	.rand:hover {
  	background-color: rgb(255, 255, 255);
    color: black;
	}
	.rand:nth-child(2n+1){
		background-color: rgb(135, 164, 243);
    color: black;
	}
	.rand:hover {
  	background-color: rgb(255, 255, 255);
    color: black;
	}

  .divANIMATIE1 {
    margin-top: 50px;
    font-family: 'Courier New', Courier, monospace;
    font-weight:600;
    width: 280px;
    height: 100px;
    background-color: #7CC6FE;
    position: relative;
    animation-name: ex;
    animation-duration: 19s;
    animation-iteration-count: infinite;
    border-radius: 40px;
  }

  @keyframes ex {
    0%   {background-color: #7CC6FE; left:0%; top:0%;}
  25%  {background-color:#7CC6FE; left:30%; top:0%;}
  50%  {background-color:#7CC6FE; left:50%; top:0%;}
  75%  {background-color:#7CC6FE; left:60%; top:0%;}
  }

  #margine{
    margin-bottom: 25px;
  }
  .divCONDITII{
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 40px;
    font-family: 'Courier New', Courier, monospace;
    font-weight:600;
  }

  .imag
  {
      width: 100%;
      transition: width 5s;
  }
  .imag:hover {
    background-color: aliceblue;
    width: 150%;
  }

  @media screen and (max-width: 992px) {
      .maindiv{
        font-size: 10px;
        margin-left: 0;
        margin-right: 0;
      }
      .divECHIPA{
        font-size: xx-small;
      }
      .TABEL{
        width: 100%;
        font-size: 8px;
        margin-left: 0px;
      }
      .divANIMATIE1{
        display: none;
      }
      .zoom{
        width: 100%;
      height:90%; 
      }
      h1{
        font-size: 30px;
      }
  }
  @media screen and (max-width: 600px) {
    .divECHIPA{
      font-size: 8px;
    }
    .TABEL{
      width: 100%;
      font-size: 8px;
      margin-left: 0px;
    }
    .divANIMATIE1{
      display: none;
    }
    h1{
      font-size: 30px;
    }
    .maindiv{
      font-size: 10px;
      margin-left: 0;
      margin-right: 0;
    }
  }

  .zoom {
    width: 50%;
    height:50%; 
    transition: transform .2s; 
    border-radius: 22%;
    box-shadow: 9px 14px 31px -4px #000000;
  }
  
  .zoom:hover {
    transform: scale(1.25);
  }