body {
      margin: 0;
      overflow: hidden;
      display: flex;
      height: 100vh;
      background-color: #000;

input[type="text"] {
      width: calc(100% - 20px);
      padding: 10px;
      margin-bottom: 20px;
      border: 1px solid #ddd;
      border-radius: 5px;
      box-sizing: border-box;
}

button {
      width: calc(100% - 20px);
      padding: 10px;
      background-color: #4caf50;
      color: #fff;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s ease;
}

button:hover {
      background-color: #45a049;
}

/* Popup styles */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px black;
    color: black;
    width: 300px; /* Set width */
    height: 100px; /* Set height */
}

.popup-content h2 {
    margin-bottom: 10px;
}

.popup-content .close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

/* Styles for the pop-up */
.popup-container {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgb(255, 255, 255, 0.60);
    padding: 20px;
    border-radius: 10px;
    color: black;
    text-align: center;
    z-index: 9999;
}

.popup-heading {
    font-size: 24px;
    margin-bottom: 10px;
}

.popup-message {
    font-size: 18px;
}

.navbar {
      display: flex;
      align-items: center;
      padding: 10px;
      position: absolute;
      top: 20px;
      left: 20px;
}

.navbar a {
      margin-left: 20px;
      text-decoration: none;
      color: black;
      font-weight: bold;
      font-size: 18px;
}

.navbar a:hover {
      color: grey;
}

.navbar img {
      width: 40px; /* Adjust the size as needed */
      height: 40px;
      margin-right: 5px;
}

.download-btn {
      border-radius: 20px;
      overflow: hidden;
      margin: 10px;
      box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
      cursor: pointer;
}
    
.download-btn svg {
      display: block;
      width: 100%;
      height: auto;
}
    
.download-btn:hover {
      filter: brightness(0.9);
}  
