
body {
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 18px;
    line-height: 1.5rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

@media screen and (min-width: 768px) {
    body {
      font-size: 14px;
      line-height: 1.5rem;
    }
  }

/* Header Styles */
header {
    margin-top: 40px;
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Logo Styles */
.logo {
    position: relative;
    z-index: 1; /* Make sure the logo stays above the HR line */
}

.logo img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

/* Horizontal Rule Styles */
hr {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #3399cc;
    border: none;
    top: 45%; /* Place in the middle of the div */
}

.name {
    font-weight: bolder;
    text-align: center;
    color: #003366;
    font-size: 1.5rem;
    line-height: 2rem;
    margin: 20px auto;
    padding: 0 20px;
}

h3 {
    margin-bottom: 2px;
    padding: 0;
}
/* Body Styles */
.content {
    padding: 20px;
    width: 90%;
    max-width: 640px;
    margin: 0 auto;
    flex-grow: 1; /* Ensures content takes available height */
}

.content a {
    color: #006699;
    text-decoration: none;
}

.divider {
    width: 100%;
    border:#ccc 1px dashed;
}

/* Footer Styles */
footer {
    width: 100%;
    border-top: 1px #ccc solid;
    height: 50px;
    padding: 10px;
    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

/* Social Media Icons */
.social-icon img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}


