 body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #F6FFFF; /* You can change this to any color you like */
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /*height: calc(100% - 60px); /* Adjust the height calculation based on your header's height */
}

 .logo-container img {
    height: 100%;
    width: 700px; /* Adjust the size as needed */
    height: auto;
}

.header {
    background-color: #F6FFFF; /* Header background color */
    color: black;
    width: 100%;
    padding: 10px 0;
}

.navbar {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 50px; /* Adjust the size of your logo */
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: #125369;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ddd; /* Color change on hover */
}

.about-me {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    padding: 20px;
    max-width: 800px; /* You can adjust this value based on your preference */
}

.about-me h2, .about-me h3, .about-me p {
    width: 100%;
    max-width: 800px;
}