* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    height: 100%;
    margin: 0;
}

/* New Navbar */

/* Navbar */
.container {
    width: 100%;
    margin: 0 auto;
}

.navbar {
    width: 100%;
    height: 100px;
    line-height: 70px;
    color: white;
    display: flex;
    justify-content: center;
    font-weight: bold;
}

.bg-custom {
    background-color: #19468D;
}

.navbar-custom {
    background-color: rgba(20, 100, 141, 0.1);
}


/* Style the navbar links */
.navbar-custom .navbar-nav .nav-link {
    color: white; /* Set the font color to white */
    font-weight: bold; /* Make the font bold */
}

/* Style the active link */
.navbar-custom .navbar-nav .nav-item.active .nav-link {
    color: white; /* Set the font color to white for the active link */
    font-weight: bold; /* Make the font bold for the active link */
}

/* Style the toggled state (when the hamburger menu is active) */

/* Style the links in the toggled state */
.navbar-custom .navbar-collapse.show .navbar-nav .nav-link {
    color: white; /* Set the font color to white in the toggled state */
    font-weight: bold; /* Make the font bold in the toggled state */
    background-color: #19468D;
    max-width: 30%;
    padding: 5px;
    opacity: 0.9;
    border-radius: 3px;
    margin: 1px;
}

/* UL Menu list */
.menu-links {
    display: flex;
    justify-content: center;
    
}

.menu-links li {
    margin-left: 110px;
    list-style: none; 
    padding: 5px;
}

.menu-links li:hover {
   color: black;
}

a {
    color: white;
    text-decoration: none;
}


/* Heading */
.imageHeader {
    background-image: url('./Images/backgroundHeader.png');
    background-repeat: no-repeat;
    max-height: 100vh;
    background-size: cover;
    background-position: center;
}

.headerTitle {
    text-align: center;
    font-size: 3em;
    width: 100vw;

}

.headerTitle2 {
    font-size: 2em;
    text-align: center;
    text-align: center;

}

.headerTitle3 {
    text-align: center;
    font-size: 1em;
}

/* Welcome Message */
/* Heading */
.header-container {
    /* margin-top: 2%; */
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    grid-gap: 150px; 
    height: auto;
    overflow: hidden;
}
.welcome {
    margin-top: 2%;
    line-height: normal;
    color: #FFFF;
    text-align: center;
}

.top-left {
    position: absolute;
    top: 8px;
    left: 16px;
  }

.phiBetaContainer {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 40%;
                
}

img.phiBetaSigLogo {
    max-height: 250px;                                                                                             
}


.chapterMissionStatement {
    color: #3652AD;
    padding: 5px;
    border-radius: 1%;
    border: 1px solid #3652AD;
    box-shadow: 5px 10px;
    font-size: 20px;
}

.foundersContainer {
   padding: 5%;
}

.column {
    flex: 10%;
    padding: 5px;
    margin-left: 5%
}

.row {
    display: flex;
    margin-left: 3%;
}

.foundersImage {
    border-radius: 100px 100px 0 0;
    max-height: 100%;
}

.foundersName {
    font-size: 10px;
}

/* logo image */
div.logo-design img {
    height: 100vh;
    width: 100%;
}

div.social-icons {
    margin-top: 10%;
}

/* Blog header */

.missionTitle {
    margin-left: 5%;
    margin-top: 15%;
}

.missionStatement {
    font-size: 1.5rem;
}

p.chapterMissionP {
    font-size: 20px;
    /* padding-left: 10px; */
}


img.phiMissionLogo {
    margin-top: 5%;
    height: 350px;
    flex-basis: 40%
    
}

/* Footer */
.footer {
    background-color: #19468D;
    margin-top: 5%;
    max-width: 100%;
    max-height: auto;
}

/* Container for the white logo and social media icons */
.logo-nav-container {
    display: inline-flex;
}

.white-logo {
    max-width: 50%;
    max-height: 100%;
    display: inline-flex;
    margin-top: 20px;
    /* padding: 5px; */
    padding-left: 5%;
}

/* Social media footer icons */
.social-icons-footer {
    width: 100%; /* Ensure the container has enough width */
    display: flex; /* Use inline-flex for horizontal alignment */
    justify-content: space-evenly;
    margin-top: 5%;
}

.social-icons-footer a {
    color: white;
    display: inline-flex;
    padding: 5px;
}


/* Navbar for the footer */
.footer-navbar-content {
    display: inline-flex;
    margin-top: 1%;
    width: auto;
    max-height: 100px;
    line-height: 70px;
}

div.footer-navbar-content li{
    display: inline-flex;
    padding: 5px;
    line-height: 200%;
    list-style: none;
    text-decoration: none;
    color: white;
}

div.footer-navbar-content a {
    color: white;
}

div.footer-navbar-content li:hover {
    color: grey;
}

