body {
    font-family: monospace;
    margin: auto;
    background-color: rgb(22, 22, 22);
    background-image: url(images/noise.png);
    background-repeat: repeat;
    
}
/* Header Styling */
header {
    position: sticky;
    top: 0;
    background-color: #1e1e1e;
}

.navlinks {
    margin: 0;
    padding: 0;
    overflow: hidden;
    list-style-type: none;
    text-align: center;
    padding: 14px 10px;
}

.navlinks a, li {
    color: white;
    text-decoration: none;
    text-align: center;
    display: inline;
    padding: 14px 10px;
}

.navlinks a:hover {
    color: rgb(197, 197, 197);
}

/* Main Content Styling */
#About {
    margin-top: 50px;
    margin-left: 200px;
    color: white; 
}

main {
    margin-top: 50px;
    margin-left: 300px;
    margin-right: 300px
}

.about-me {
    border: 1px solid rgb(197, 197, 197);
    border-radius: 15px;
    padding: 25px;
    margin-left: 200px;
    margin-right: 200px;
}

.contact-section {
    color: white;
}

#projects-header {
    margin-top: 50px;
    margin-left: 200px;
    color: white;    
}

.projects-card {
    border: 1px solid rgb(197, 197, 197);
    border-radius: 15px;
    padding: 25px;
    margin-left: 200px;
    margin-right: 200px;
    text-align: center;

    display: flex;
    justify-content: space-around;
}

.github-icon {
    color: white;
}

.github-icon:hover {
    color: rgb(197, 197, 197);;
}

#Contact-Header {
    margin-top: 50px;
    margin-left: 200px;    
}

.contact-card {
    border: 1px solid rgb(197, 197, 197);
    border-radius: 15px;
    padding: 25px;
    margin-left: 200px;
    margin-right: 200px;
    text-align: center;

    display: flex;
    justify-content: space-around;
}

.contact-link {
    color: white;
    text-decoration: none;
}

.contact-link:hover {
    color: rgb(197, 197, 197);
    text-decoration: none;
}

#contact-link-2 {
    margin-top: 9px;
}

#contact-link-2 h3 {
    margin-top: 13px;
}

/* Footer Styling */
footer {
    margin-top: 100px;
    border-top: 1px solid white;
    margin-left: 300px;
    margin-right: 300px;
}

.footerlinks {
    margin-bottom: auto;
    text-align: center;
    padding: 14px 10px;

}

.footerlinks a, li {
    color: white;
    text-decoration: none;
}

.footerlinks a:hover {
    color: rgb(197, 197, 197);
}
