*{
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    padding: 0;
    font-weight: lighter;
    margin: 0;
}

nav{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    height: 15vh;
    top: 0;
    color: #007bff;
    background-color: white;
    z-index: 100; 
    position: fixed;
}

#progressBar {
    width: 0%;
    position: fixed;
    top: 15vh;
    left: 0;
    height: 4px; /* adjust height as needed */
    background-color: #007bff; /* adjust color as needed */
    z-index: 9999; /* ensure the progress bar is on top */
    transition: width 0.3s ease; /* smooth transition */
}

.home{
    display: flex;
    flex-direction: row;
    height: 85vh;
    margin-top: 15vh;
    width: 100%;
}

.home_text{
    width: 40%;
    padding: 10%;
    display: flex;
    flex-direction: column;
    text-align: start;
}

.home_text h1{
    font-size: 64px;
}

.home_img{
    width: 40%;
    padding: 5%;
    
}

.home_img img{
    width:100%;
    height: 100%;
    bottom: 5;
}


nav p, nav a{
    margin-left: 3%;
    margin-right: 3%;
}

.about{
    background-color: transparent;
    height: 300vh;
    width: 100%;
    display: flex;
    flex-direction: row;
}

.about_text{
    width: 50%;
    background-color: rgb(14,14,14);
}

.about_img{
    background-image: url("/images/network.gif");
    width: 50%;
    background-attachment: fixed;
    background-position: right;
    background-repeat: no-repeat;
    background-size: 50%;
    background-color: rgb(14,14,14);
}

.about_me{
    height: 100vh;
    width:70%;
    padding-left: 15%;
    padding-right: 15%;
    color: white;
    display: flex;

    text-align: start;
    flex-direction: column;
    justify-content: space-around;
    line-height: 1.6;

}

a{
    text-decoration: none;
    color: #007bff;
}

.fade-in {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.contact_menu{
    border: 0.5px solid white;
    height: 70%;
    border-radius: 5px;
    overflow: hidden;
}

.contact_item{
    height: 23%;
    padding: 5%;
    border-bottom: 0.5px solid white;
    display: flex;
    align-items: center;
    justify-content: space-around;
    text-align: end;
    transition: all 0.3s;
    background-color: rgb(220, 220, 220);
    color: black;
}

.contact_item img{
    width: auto;
    filter:grayscale();
    height: 50%;
}

.contact_item h3{
    flex: 1;
}

.contact_item:hover{
    background-color: white;
    color: black;
}

.contact_item:hover img{
    filter:grayscale();
}

.news_item{
    height: 20%;
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 1px solid white;
    width: 100%;
    margin-bottom: 5%;
}

.news_item p{
    flex: 1;
    padding: 5%;
}

.date{
    background-color: #007bff;
    text-align: center;
    margin-left: 5%;
    border-radius: 15px;
}

.news{
    margin-top: 15vh;
    min-height: 85vh;
    height: auto;
    width: 80%;
    padding: 10%;
    background-color: black;
    color: white;
    justify-content: center;
    text-align: center;
    
}

.news_section{
    display: flex;
    flex-direction: column;
    text-align: start;
    
}
