*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0b1a0b;
    font-family: poppins, sans-serif;
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    width: 100%;
    position: sticky;
    top: 0;
    background: rgb(2, 28, 2);
    box-shadow: rgb(5, 66, 5) 0px 0px 30px 0px;
    backdrop-filter: blur(50px);
    z-index: 999;
    border-bottom: 1px solid rgb(11, 207, 89);
}

.logo {
    font-size: 2.5rem;
    font-weight: 660;
    color: rgb(251, 255, 0);
    text-decoration: none;
    cursor: pointer;
}

.omniplay {
    height: 190px;
    width:  340px;
    margin: 39px auto 20px auto;
    padding-top: 15px; 
    padding-left: 10px;
    align-items: left;
    justify-content: left;
}


.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 2rem;
    max-width: 1600px;
}

.logo {
    font-size: 2.5rem;
    font-weight: 660;
    color: rgb(225, 255, 0);
    text-decoration: none;
    cursor: pointer;
}

.navbar-container .files {
    display: flex;
    text-align: center;
    gap: 1.3rem;
    list-style: none;
}

.navbar-container .files li a {
   text-decoration: none;
    color: rgb(251, 255, 0);
    font-size: 1.6rem;
    font-weight: 550;
    padding: 3px 20px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.5s ease;
    white-space: nowrap;
}

.navbar-container .files li a:hover {
    background: rgba(18, 84, 3, 0.421);
    color: rgb(251, 255, 0);
    border: 3px solid #00ff66;
    font-size: 1.8rem;
}

.card-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 40px;
    padding: 70px;
    padding-top: 50px;
}

.card{
  height: 90px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);

  border: 2px solid #00ff66;
  border-radius: 14px;

  color: white;
  font-size: 17px;
  font-weight: bold;

  display: flex;
  align-items: left;
  justify-content: left;
  padding: 25px;
  gap: 50px;

  cursor: pointer;
  transition: all 0.3s ease;

  text-decoration: none;
}

.card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 0 20px #00ff66;
}

.card p{
    font-size: 35px;
}

.card img{
    width: 50px;
    height: 80px;
    padding-bottom: 40px;
}