@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

body {
    background-color: #000000;
    font-family: "Roboto Mono", monospace;
    min-width: 100vw;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.navbar {
    background-color: rgba(5, 5, 5, 0.8);
    padding: 20px 0;
    width: 100%;
    justify-content: end;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index:999;
}

.link {
    font-size: 22px;
    margin-left: 50px;
    margin-right: 50px;
    text-decoration: none;
    color: aliceblue;
    font-weight: 300;
    letter-spacing: 5px;
}

.link:hover {
    color: rgb(61, 212, 212);
}

.link,
.btn {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.container {
    position: absolute;
    top: 20%;
    width: auto;
}

.content {
    padding-left: 10%;
}


.content-paragraph {
    color: rgb(61, 212, 212);
    font-size: 25px;
    margin-top: 10px;
    margin-bottom: 1px;
    letter-spacing: 2px;

}

.content-heading {
    color: rgb(255, 255, 255);
    font-size: 80px;
    margin-bottom: 0;
    margin-top: 0;
    font-weight: 600;

}

.content-sub-heading {
    color: rgb(182, 182, 182);
    font-size: 70px;
    margin-bottom: 0;
    margin-top: 0;
}

.content-intro {
    color: rgb(129, 129, 129);
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 10px;
    letter-spacing: 1px;
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.content-btn {
    background-color: transparent;
    border: 1px solid rgb(61, 212, 212);
    font-size: 25px;
    color: rgb(61, 212, 212);
    border-radius: 7px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    letter-spacing: 2px;
    margin-top: 20px;
    text-decoration: none;
    display: inline-block;
    font-weight: 300;
}

.content-btn:hover {
    background-color: rgb(39, 141, 141);
    color: aliceblue;
    cursor: pointer;
    border: 1px solid rgb(39, 141, 141);
}

.navbar-icon {
    position: absolute;
    top: 1%;
    z-index: 2;
    left: 1%;
}


#content-heading {
    display: inline;
    border-right: 0.1em solid rgb(182, 182, 182);
    animation: blink-cursor .3s step-end infinite;
}

@keyframes blink-cursor {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: rgb(182, 182, 182)
    }
}

.no-cursor {
    border-right: none;
    animation: none;
}

.about {
    margin-top: 10%;
    padding-left: 10%;
    padding-right: 10%;
    color: white;
}

.about-heading {
    position: relative;
    text-align: center;
    margin-right: 10%;
    font-size: 50px;
}


.about-sub-container {
    background-color: rgb(7, 7, 7);
    display: flex;
    margin-top: 5%;
    margin-bottom: 5%;
    margin-right: 5%;
    border-radius: 5px;

}

.about-know-me {
    width: 450px;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 50px;
    border-radius: 10px;
    margin-bottom: 45px;


}

.about-know-me-heading {
    margin-top: 10px;
    font-size: 30px;
    text-align: center;
}

.skills {
    margin-top: 10%;
    padding-left: 10%;
    padding-right: 10%;
    color: white;
}
.skills-sub-container {
    background-color: rgb(7, 7, 7);
    display: flex;
    margin-top: 5%;
    margin-bottom: 5%;
    margin-right: 5%;
    border-radius: 5px;

}

.about-skills {
    background-color: rgb(7, 7, 7);
    width: 450px;
    padding: 30px;
    border-radius: 10px;
}

.skills-button {
    background-color: rgb(54, 54, 54);
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 5px;
    color: white;
    margin: 5px;
    display: inline-block;
}

.about-paragraph {
    text-align: left;
    letter-spacing: 1px;

}

.about-profile-img {
    float: left;
    margin-right: 15px;
    border-radius: 10px;
}

.about-skills-heading {
    margin-top: 10px;
    font-size: 30px;
    text-align: center;
}


.projects {
    margin-top: 10%;
    padding-left: 10%;
    padding-right: 10%;

    color: white;
}

.projects-heading {
    position: relative;
    text-align: center;
    margin-right: 10%;
    font-size: 50px;
}

.projects-container {
    display: flex;
    flex-direction: column;
    margin-top: 5%;
    margin-bottom: 5%;
    margin-right: 5%;
}

.projects-sub-container {
    background-color: rgb(10, 10, 10);
    width: 650px;
    padding: 25px;
    border-radius: 10px;
    margin-right: 10%;
    margin-bottom: 10%;
}

.projects-sub-container:last-child {
    margin-right: 0;
}

.projects-sub-container-heading {
    font-size: 25px;
    text-align: center;
    letter-spacing: 2px;

}

.projects-sub-container-image {
    margin-bottom: 10px;
    padding-right: 1%;
    width: 100%;
    border-radius: 10px;
}


.projects-sub-container-paragraph {
    line-height: 1.5em;
    font-weight: 300;
    padding-left: 7px;
    letter-spacing: 1px;
}

.projects-container-two-items{
    display: flex;
}

.footer{
    width:100%;
    background-color: rgb(7, 7, 7);
    height: 200px;
    color: aliceblue;
}

.footer-icon{
    width: 40px;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.footer-icon-div{
    background-color: rgb(14, 14, 14);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5%;
    transition: transform 0.5s;
}

.footer-icon-div:hover{
    transform: scale(1.1);
    cursor: pointer;
}

.footer-sub-container{
    position: relative;
    top: 40%;
    display: flex;
    justify-content: center;
    
}

#profile-pic{
    width: 450px;
    border-radius: 5px;
    margin-top: 30px;
    margin-left: 30px;

}


.code-box {
    background-color: rgb(0, 0, 0);
    border-radius: 10px;
    width: 400px;
    height: 325px;
    padding-right: 20px;
    padding-bottom: 20px;
    margin-top: 110px;
    margin-left: 5%;
    border: 2px solid rgb(10, 10, 10);

}
code[class*="language-"] {
    text-shadow: none !important; /* Removes double text effect */
}
pre[class*="language-"] {
    padding-top: 0.5em !important;  /* Change padding */
    padding-left: 1em !important;  /* Change padding */

}
.code-box code {
    display: block;
    font-size: 16px;
}
