/*General*/
body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

.mobile-container {
  max-width: 480px;
  margin: auto;
  background-color: #555;
  height: auto;
  color: white;
  border-radius: 10px;
  overflow: hidden;
}

/* Top Navigation Bar Styles */
.topnav {
  overflow: hidden;
  background-color: #333;
  position: relative;
}

.topnav #myLinks {
  display: none;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.topnav a {
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

.topnav a.icon {
  background: black;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

.topnav a:hover {
  background-color: #ddd;
  color: rgb(13,13,13);
}

.active {
  background-color: #0577e1;
  color: white;
}

/* Section Styles */
.section {
  padding-left: 16px;
  padding-bottom: 20px;
}

.section h3 {
  margin-top: 0;
}

.section p {
  font-size: 16px;
}

/* Media Query to handle small screens (Mobile Devices) */
@media screen and (max-width: 480px) {
  .topnav a {
    font-size: 14px;
    padding: 12px;
  }

  .mobile-container {
    height: auto; /* Allow dynamic height based on content */
  }
}







