html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial;
    color: white;
    background-image: linear-gradient(to left top, rgb(250, 247, 247), rgb(33, 72, 126));
    background-attachment: fixed;
    background-size: cover;
}

.menu-bar {
    background-color: #f2eeee;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 5px;
    position: fixed; /* Set the navbar to fixed position */
    top: 0; /* Position the navbar at the top of the page */
    width: 100%; /* Full width */
    overflow: hidden;
}

.item {
    display: block;
    color: rgb(66, 171, 197);
    text-align: center;
    padding: 15px;
    padding-inline: 30px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.item:hover {
    color: #ffffff;
    transform: scale(1.3);
}

h1 {
    color: rgb(253, 253, 255);
    font-weight: bold;
    font-size: 50px;
}
/* styles.css */
.main-lists-container {
    padding-top: 80px;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
}

.main-list {
    margin: 10px;
    padding: 10px;
    padding-left: 80px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.main-list h2 {
    margin-top: 0;
}

.sub-list {
    padding: 0;
    margin: 10px;
}

.sub-list li {
    margin-bottom: 15px;
}

.hyperlink {
    color: rgb(144, 244, 255);
    text-decoration: none;
    font-weight: bold;
}

.hyperlink:hover {
    color: rgb(0, 128, 255);
}

.container {
    display: flex;
    font-weight: lighter;
    font-family: 'Segoe UI';
    padding: 200px;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
}

.hyperlink2 {
    color: rgb(35, 240, 210);
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
}

.hyperlink2:hover {
    color: rgb(52, 60, 223);
    transform: scale(1.3);
}

.project-container {
    display: flex;
    margin: 20px;
    padding: 10px;
    background-color: #383844;
    border: 5px solid #ccc;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
    /* perspective: 1000px;  */
}
.pad {
    padding-top: 80px;
}
.project-details {
    flex: 2;
    padding: 10px;
}

.project-name {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 15px;
}

.project-description {
    font-size: 16px;
    margin: 10px;
}

.project-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sub-container {
    padding: 40px;
    width: 300px;
}