/* HTML tags direct styling */
html {
    scroll-behavior: smooth;
}

body {
    font-family: "League Spartan", sans-serif;
    margin: 0;
    background-color: #000;
    color: white;
}

p {
    font-weight: 300;
}

.header {
    text-align: center;
    padding: 0 240px;
}

a {
    text-decoration: none;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}

a:hover {
    opacity: 100%;
}

.logo {
    /* rotate: 90deg; */
    font-family: "League Spartan", sans-serif;
    font-family: "PT Mono", monospace;
    font-size: 32px;
    color: #fff;
    text-align: center;
    margin-top: 20px;
    color: #79C977;
    /* opacity: 88%; */
}


h2 {
    /* font-family: "Space Grotesk"; */
    font-family: "PT Mono", monospace;
    font-weight: 800;
    font-size: 44px;
    margin: 0 0 20px 0;
    color: #79C977;
}

h3 {
    font-size: 36px;
    line-height: 48px;
    margin: 8px 0;
}

h4 {
    font-size: 24px;
    line-height: 32px;
    margin: 8px 0;
}

p {
    color: #fff;
    opacity: 64%;
    margin: 0;
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
}

ul {
    color: #fff;
    opacity: 64%;
    font-size: 20px;
    line-height: 28px;
}

li {
    margin-bottom: 20px;
}

.sm-link {
    opacity: 70%;
    padding: 32px;
    background-color: #333;
    text-align: center;
}

.sm-link:hover {
    background-color: #79C977;
    color: #212121;
}

.quote-text {
    opacity: 70%;
    text-align: center;
    margin-bottom: 64px;
}
.quote {
    font-size: 64px;
}
/*  */

.text-center {
    text-align: center;
}

/* Images */

img {
    width: 100%;
}

#dp {
    height: 600px;
    object-fit: cover;
    object-position: top;
    position: sticky;
    top: 80px;
}

.project-card img {
    margin-bottom: 12px;
}


/* Container tags */

.hero-container {
    padding: 200px 400px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.container {
    padding: 100px 200px;
    border-top: 1px solid #4d4d4d;
}

#about-container {
    position: relative;
}

.header {
    text-align: center;
    margin-bottom: 64px;
}

/* Grids */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

/* Components & Elements */

.nav-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    padding: 24px;
    border-top: 1px solid #4d4d4d;
    border-bottom: 1px solid #4d4d4d;
   

}

.nav-links a {
    opacity: 70%;
}

.nav-links a:hover {
    opacity: 100%;
    padding: 0 4px;
}


.hero-card {
    width: fit-content;
    /* background-color: #FA7070; */
    background-color: #007DFE;
    padding: 100px 48px;
    text-align: center;
    color: #FDFFD1;
}

/* Typo */

.hero-title {
    font-family: "PT Mono", monospace;
    letter-spacing: -4px;
    font-size: 96px;
    /* line-height: 44px; */
    margin: 12px 0 24px 0;
    /* background: linear-gradient(45deg, #00c68a, #0b78ec, #ea01c3); */
    /* background: linear-gradient(45deg, #C3FE88, #2e9cf6, #ec5050); */
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: #79C977; 
    animation: gradient 4s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.title {
    font-family: "PT Mono", monospace;
    word-spacing: -24px;
    font-size: 80px;
    font-weight: 800;
    margin: 16px;
    /* color: #C3FE88; */
    color: #79C977;
    /* color: #6FC065; */
}

.sub-title {
    font-size: 24px;
    line-height: 36px;
    margin-top: 48px;
}


.content p {
    margin-bottom: 48px;
}

.heading {
    padding: 0 200px;
    text-align: center;
    margin-bottom: 48px;
}

.hero-para {
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    text-align: center;
    max-width: 700px;
    margin-top: 36px;
}

#copyright {
    padding: 24px 0;
    border-top: 1px solid #4d4d4d;
    text-align: center;
    opacity: 70%;
}

/* Media Queries */
@media only screen and (max-width: 1280px) {

    .container,
    .hero-container {
        padding: 64px 48px;
    }

    .header {
        padding: 0;
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 576px) {

    .container,
    .hero-container {
        padding: 48px 24px;
    }

    .header {
        padding: 0;
    }

    .grid-3, .grid-2 {
        grid-template-columns: 1fr;
    }

    #about-container {
        position: static;
    }

    #dp {
        position: static;
    }

    .title {
        font-size: 64px;
        /* margin: 16px; */
    }

    h3 {
        font-size: 20px;
    }

    .hero-para {
        font-size: 16px;
        line-height: 28px;
    }
}