* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
.background {
    width: 100%;
    height: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1; 
    object-fit: cover;
}
.lspu {
    position: absolute;
    top: 10px;
    left: 15px;
    width: 55px; 
    height: auto;
}

.ccs {
    position: absolute;
    top: 10px;
    left: 90px;
    width: 55px; 
    height: auto;
}
.main-nav-bar {
    margin-top: 10px;
    margin-left: 26%;
    position: relative;
    width: 575px;
    height: 50px;
    background-color: #952323;
    border-radius: 8px;
    font-size: 0;
}

.main-nav-bar .nav-bar {
    line-height: 50px;
    height: 100%;
    font-size: 15px;
    display: inline-block;
    position: relative;
    z-index: 1;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    color: white;
    cursor: pointer;
}

.nav-bar {
    width: 115px;
}

#nav-animation {
    width: 100px;
    left: 0;
}

.main-nav-bar .nav-bar:hover{
    background-color: antiquewhite;
    color: #952323;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }
  
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .popup {
    background-color: #ffffff;
    color: #952323;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
  }
  
  .popup h2 {
    margin-top: 0;
  }
  
  .popup p {
    margin-bottom: 20px;
  }
  
  .popup a {
    display: inline-block;
    padding: 10px 20px;
    margin-right: 10px;
    text-decoration: none;
    color: #952323;
    border: 2px solid #952323;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .popup a:hover {
    background-color: #952323;
    color: #ffffff;
  }
  