@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,500;1,500&display=swap');
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background-color: #24252A;
}

li, a, button{
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #edf0f1;
    text-decoration: none;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 8%;
    
}

.logo{
    cursor: pointer;

}

header img{
    height: 120px;
    padding: 10px;
    position: relative;
    cursor: pointer;
    
}

.nav_links {
    list-style: none;

}

.nav_links li{
    display: inline-block;
    padding: 0px 30px;
}

.nav_links li a {
    transition: all 0.3s ease 0s;
}

.nav_links li a:hover{
    color: #0088a9;
}

button {
    padding: 9px 25px;
    background-color: rgba(0,136,169,1);
    border:none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

button:hover{
    background-color: rgba(0,136,169,0.8);

}


h2{
    color: white;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding: 15px 0px;
    margin-left: 20px;
    margin-right: 20px;
    

}


.left{
    display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  margin-top: 40px;
}

table{
    display: inline-block;
}

tr:hover {
    background-color: #f5f5f5;
    transform: scale(1.02);
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2), -1px -1px 8px rgba(0, 0, 0, 0.2);
}

tr {
    transition: all .2s ease-in;
    cursor: pointer;
    background-color: white;
    
}

th,td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #ddd;
    background-color: #2e2d2d;
    
}

#header {
    background-color: #000000;
    color: #ffffff;
    
}

body {
    padding: 0px;
    margin: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

table{
    padding: 20px 0px 0px 20px;
    margin-right: 20px;
    margin-left: 10px;
    display: inline-table;

}



th{
    background-color: white;
}


.bottom-bar{
    background: #eb9951;
    text-align: center;
    padding: 10px 0;
    margin-top: 50px;
}
.bottom-bar h4{
    color: #ffffff;
    margin: 0;
    font-size: 16px;
    padding: 7px;
}

footer{
    background-color: #3f3f3f;
    height: 100px;
    margin-top: auto;
    padding: 30px;
    margin-top: 40px;
}
body{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h4{
    text-align: center;
    color: white;
    background-color: #3f3f3f;
    
}


/* Hamburger Menu Styles */
.hamburger {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
    z-index: 100;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .nav_links {
        display: none;
        width: 100%;
        text-align: center;
        margin-top: 20px;
        flex-direction: column;
    }

    .nav_links li {
        padding: 10px 0;
    }

    .hamburger {
        display: block;
    }

    .nav_links.active {
        display: block;
    }
}


