*{
    margin:0;
    padding: 0;
}
body {
    background-color: rgba(18, 18, 18, 255);
    margin: 0;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    width: 100vw;
    overflow-x : hidden;
}
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(35, 35, 35, 0.9);
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    height: 5rem;
}
nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    margin: 0;
    margin-top: -40px;
    margin-left: 50px;
    margin-right: 50px;
}
nav ul li {
    list-style-type: none;
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    width: 15rem;
    height: auto;
    margin-right: 10px;
    margin-top: 10px;
}
.logo span {
    color: #fff;
    font-size: 1.4em;
    font-weight: bold;
}
nav ul li a {
    text-decoration: none;
    color:rgba(255, 255, 255, 0.60);;
    font-weight: bold;
    transition: color 0.3s;
}
nav ul li a:hover {
    background-color: rgb(255, 255, 255,0.1);
    color: white;
}
section {
    padding-top: 50px;
    padding-bottom: 50px; /* Add padding to ensure content doesn't stick to the edges */
    padding: 50px;
}
.menu-icon {
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    text-align: right;
    padding: 10px;
}
@media screen and (max-width: 1000px) {
    nav ul {
        display: none;
        flex-direction: column;
        padding: 10px;
        background-color: #121212;
        opacity: 0.99;
        border: solid white;
        height: 30rem;
    }
    .logo {
        justify-content: space-between;
        margin-right: 0;
        margin-bottom: 10px;
        text-align: center;
        height: 4rem;
        background-color: rgba(206, 206, 206, 0.2);
        width: 100%;
        justify-content: center;
    }
    .logo img {
        width: 11rem;
    }
    nav ul li {
        margin-bottom: 10px;
        text-align: center;
    }
    .menu-icon {
        display: block;
        float: right;
    }
}
