* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    text-decoration: none;
    list-style: none;
}

body {
    font-family: "EB Garamond";
    background: linear-gradient(180deg, #000000, #002944);
}

.custom-cursor {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid black;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(1);
    transform-origin: center;
    z-index: 10;
    transition: 0.3s;
}

.custom-cursor span {
    opacity: 0;
    font-family: "Poppins";
    color: black;
}

.navbar{
    align-items: center;
    justify-content: center;
    color: white;
    font-family: "Poppins";
    font-size: 3rem;
    position: fixed;
    width: 100%;
    height: 10%;
    z-index: 2;
    top: 0;
    background-color: rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
}

.marquee-container{
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: 100%;
}

.navbar img{
    height: 80px;
}

.section-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    padding: 4rem 1rem;
    margin-top: 3rem;
}

.section-container .project-top {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    max-height: 600px;
    height: 600px;
    overflow: hidden;
    gap: 1rem;
}

.section-container .project-top .project-column {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    height: 100%;
    gap: 1rem;
}

.section-container .project-top .project-rows {
    width: 130%;
    align-items: center;
    height: 100%;
    gap: 1rem;
}

.section-container .project-top .grid-one {
    display: grid;
    grid-template-rows: 2fr 1.2fr;
}

.section-container .project-top .grid-two {
    display: grid;
    grid-template-rows: 1.2fr 2fr;
}


.section-container .project-top .two {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    height: 100%;
    gap: 1rem;
}

.section-container .project-top .overflow-hover {
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 15px;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.section-container .project-top .overflow-hover:hover img {
    transform: scale(1.1);
}

.section-container .project-top .overflow-hover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
    position: absolute;
    z-index: -1;
}

.section-container .project-top .overflow-hover .text-identity {
    height: 0;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin: auto;
    display: flex;
    text-align: center;
    backdrop-filter: brightness(50%);
    transition: 0.7s ease-in-out;
}

.section-container .project-top .overflow-hover .text-identity h3,
.section-container .project-top .overflow-hover .text-identity p {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.section-container .project-top .overflow-hover:hover .text-identity h3,
.section-container .project-top .overflow-hover:hover .text-identity p {
    opacity: 1;
}



.section-container .project-top .overflow-hover:hover .text-identity {
    height: 100%;
}

.section-container .project-top .overflow-hover .text-identity h3 {
    font-family: "EB Garamond";
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.section-container .project-top .overflow-hover .text-identity p {
    font-family: "Poppins";
    font-size: 1rem;
    font-weight: 400;
    color: rgb(201, 201, 201);
}

.section-container .project-top .overflow-hover .text-identity .container-identity .underline {
    width: 80%;
    margin: auto;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.75);
    opacity: 0;
    transition: 0.2s;
}

.section-container .project-top .overflow-hover:hover .text-identity .container-identity .underline {
    opacity: 1;
}

.section-container .project-top .overflow-hover .text-identity .container-identity{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.text-section {
    width: 100%;
}

.text-thanks {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    text-align: center;
    width: 50%;
    padding-bottom: 3rem;
}

.text-thanks h1 {
    font-family: "Poppins";
    font-size: 3rem;
    font-weight: 700;
    color: white;
}