/* edit navbar */
.nav-link{
    color: #323232;
}
.nav-link:hover{
    color: #323232;
}

/* edit asides */
.scroll-to-top-btn {
    left: 4vh;
}
.social-link-container {
    right: 4vh;
}







#hidden-project {
    background-color: #fff;
}
.first-section {
    padding-top: 16rem;
    padding-bottom: 5rem;
}
.page-title {
    line-height: 1;
}
.subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: #4e4e4e;
}
.description {
    font-size: 1.5rem;
    font-weight: 500;
}
.year-tag {
    font-size: 2rem!important;
    font-weight: 600;
}
.year-old {
    font-size: 1.2rem!important;
    font-weight: 400;
    color: #4e4e4e;
}
.yt-integration {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

.padding-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.grid-2{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}
.grid-3{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.5rem;
}
.grid-5{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 1rem;
}
.card {
    background-color: #fff;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}
.card:hover {
    transition: all 0.3s ease-in-out;
    transform: translateY(-5px);
}
.card p {
    font-size: 1rem;
    color: #323232;
}
.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #323232;
}
.list-details li {
    margin-bottom: 15px;
}
.summary-title {
    font-size: 1.2rem;
    font-weight: 400;
}

.max-height-400 {
    height: 400px;
    width: fit-content;
}
.height-500 {
    height: 500px;
}
.w-80 {
    width: 80%;
    height: auto;
}


iframe {
    border-radius: 40px;
    overflow: hidden;
}
.grid-2 iframe {
    border-radius: 20px;
    overflow: hidden;
}
.img-m-rounded {
    border-radius: 10px;
    overflow: hidden;
}
.img-l-rounded {
    border-radius: 20px;
    overflow: hidden;
}
.img-xl-rounded {
    border-radius: 40px;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .container {
        padding-left: 2.5rem;
        padding-right: 1rem;
    }
    .scroll-to-top-btn {
        left: 0.5rem;
    }
    .social-link-container {
        display: none;
    }
    .grid-2{
        grid-template-columns: 1fr;
    }
}