/* STYLE */

    body {
      font-family: 'Tahoma', sans-serif;  /* Apply font to the entire page */
    }

    html, body {
      margin: 0;
      padding: 0;
      height: 100%; /* Ensure the body takes the full height */
    }
    
    /* Image Banner style */
    .banner-container {
      position: relative;
      display: flex;
      width: 100%;
      height: 400px;
      background-image: url('banner.jpg'); /* Replace with your image path */
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
    }

    /* Dark overlay */
    .banner-container::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5); /* Dark overlay */
      z-index: 1; /* Place overlay below the text */
    }

    /* Text overlay style */
    .banner-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: white;
      font-family: Tahoma, sans-serif;
      z-index: 2; /* Ensure text is above the overlay */
    }

    .banner-text h1 {
      font-size: 48px;
      margin: 0;
    }

    .banner-text p {
      font-size: 20px;
      margin-top: 10px;
    }

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


/* Tab Banner Styles */
.tab-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    z-index: 1000;
}

.tab-banner a {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    margin: 0 10px;
    font-size: 18px;
    font-family: 'Tahoma', sans-serif;
}

.tab-banner a:hover {
    background-color: #575757;
}

/* Box on homepage */
.container {
    display: flex;
    justify-content: space-between;
    margin-top: 70px; /* Ensure the content is below the fixed tab banner */    
    width: 100%;
    padding: 0px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative; 
    
}

/* Profile photo styles */
.profile-photo img {
    display: flex;
    margin-top: 90px; /* Ensure the content is below the fixed tab banner */    
    margin-left: 100px;
    margin-right: 20px;
    width: 350px;
    height: 350px;
    border-radius: 50%; /* Makes the image round */
    object-fit: cover;
}


/* Main Content Styles */
.content {
    margin-top: 70px; /* Ensure the content is below the fixed tab banner */
    margin-right: 60px;
    margin-left: 60px;
    padding: 40px;
    font-family: 'Tahoma', sans-serif;
}

.content h1 {
    font-size: 2em;            /* Style for header */
    margin-bottom: 10px;       /* Margin below the header */
    text-align: justify;
}

    .content p {
    font-size: 1.2em;          /* Style for paragraph text */
    line-height: 1.6;          /* Line height for readability */
    text-align: justify;
}

    /* Responsive styles */
    @media screen and (max-width: 768px) {
      .content {
      margin: 35px;
      padding: 0;
      height: 100%; /* Ensure the body takes the full height */
    }        
      .banner-text h1 {
        font-size: 36px;
      }

      .banner-text p {
        font-size: 16px;
      }
        
      .content:not(.container .content) h1 {
        font-size: 26px;
      }

      .content:not(.container .content) p {
        font-size: 16px;
      }   

      .container .content h1 {
        font-size: 26px;
        text-align: left;  
      }

      .container .content p {
        font-size: 16px;
        text-align: left;    
      }            
        
      .container {
        flex-direction: column; /* Stack items vertically on small screens */
        padding: 15px; /* Reduce padding for smaller screens */
        margin-top: 10px; /* Reduce the top margin for mobile */
        }

      .profile-photo img {    
        margin-left: 8px;
        margin-right: 8px;
        }
    }
