html{
    scroll-behavior: smooth;
    transition: all 0.3s ease-in-out;
    font-family: 'Titillium Web', sans-serif;
}  

body {
    margin: 0;
    background-color: #24292E;
}

nav {
    display: flex;
    color: #464c51;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 200;
    padding: 2rem;
    position: fixed;
    z-index: 100;
}

nav li {
    list-style-type: none;
}

nav a {
    color: #464c51;
    text-decoration: none;
    font-weight: 500;
}

nav a:hover {
    color: #fd0037;
    transition: color 0.3s ease;
    font-size: 2rem;
}

#hi {
    font-size: 10rem;
    color: #464c51;
    font-weight: 700;
    margin: 0;
}

#im {
    font-size: 4.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

#im-ext {
    color: white;
    margin: 0;
    font-size: 2.5rem;
}

#name {
    color: #fd0037;
}

#aboutheading, #skillheading, #projectheading, #findme {
    font-size: 5rem;
    font-weight: 700;
    margin: 0;
}

#aboutheading {
    font-size: 9rem;
}

#skillheading, #findme {
    color: white;
}

#projectheading {
    color: #24292E;
}

.container {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    max-width: 65vw;
    margin: 0 auto;
    min-height: 100vh;
}

.hello {
    margin: 0;
    position: absolute;
    top: 45vh;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

#skills, #socials {
    background-color: #24292E;
}

#about, #projects {
    background-color: white;
}

#about-me {
    font-size: 1.7rem;
    color: #464c51;
    font-weight: 500;
    text-align: justify;
}

.skills-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    width: 100%;
    padding: 0;
    margin: 0 auto;
    justify-content: center;
}

.skills-list li {
    color: white;
    list-style-type: none;
}

.single-skill {
    display: flex;
    align-items: center;
    padding: 1rem;
    justify-content: flex-start;
    transition: transform 0.3s ease;
}

.single-skill:hover {
    transform: translateY(-10px);
}

.single-skill i {
    font-size: 3rem;
    margin-right: 1rem;
}

.single-skill h3 {
    font-size: 1.5rem;
    margin: 0;
}

.project-menu {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
}

.individualprojectheading {
    margin: 0;
}

.item {
    margin: 0;
    padding: 1.5rem;
    width: calc(33.33% - 3rem);
    min-width: 250px;
    max-width: 350px;
    min-height: 200px;
    border: 1px solid black;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.item:hover {
    transform: translateY(-5px);
}

.item h1 {
    color: black;
    font-size: 2rem;
    font-weight: 700;
    text-align: start;
    margin-top: 0;
}

.item p {
    font-size: 1.3rem;
    font-weight: 400;
    text-align: start;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.redirect {
    margin-top: auto;
}

.link {
    color: black;
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid black;
    border-radius: 10px;
    padding: 0.1rem 1.2rem;
    transition: 0.3s ease-in-out;
    display: inline-block;
}

.link:hover {
    background-color: #24292E;
    border: 1px solid #24292E;
    color: white;
    transition: 0.3s ease-in-out;
}

.more {
    display: flex;
    text-align: center;
    align-items: center;
    margin: 2rem auto;
}

.more a {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #24292E;
    text-decoration: none;
    border: 1px solid #24292E;
    border-radius: 10px;
    padding: 0.5rem 1.5rem;
    transition: 0.3s ease-in-out;
}

.more a:hover {
    background-color: #fd0037;
    border: 1px solid #fd0037;
    color: white;
    transition: 0.3s ease-in-out;
}

.icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.icons a {
    text-decoration: none;
    font-size: 5rem;
    padding: 2rem 4rem;
    transition: transform 0.3s ease;
}

.icons a:hover {
    transform: translateY(-10px);
}

#findme {
    margin-bottom: 2rem;
}