@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --primary-color: orange;
}

body {
    background: #101010;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

.section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.top-section {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 2rem;
    line-height: 1.2;
}

.top-text {
    font-weight: 500;
}

.top-text > b {
    text-decoration: underline var(--primary-color) 7px;
}

.middle-section {
    font-weight: 400;
}

.mid-top-text {
    font-size: 2rem;
    margin-bottom: 0;
}

.mid-bottom-text {
    font-size: 1.3rem;
    margin-top: 0;
}

.cog {
    max-height: 15px;
    fill: #FFFFFF;
    animation: spin 5s linear infinite;
}

.cog:hover {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.project-cards {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    justify-items: center;
    margin-bottom: 50px;
    margin-inline: 10%;
}

.project-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    max-width: 250px;
    padding: 20px;

    background: rgba(255, 255, 255, 0);
    box-shadow: 0 8px 32px 0 rgba(26, 28, 50, 0.37);
    backdrop-filter: blur( 14px );
    -webkit-backdrop-filter: blur( 14px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );

    transition: all 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
    transition: all 0.3s;
    box-shadow: 0px 0px 20px 1px rgb(72, 72, 72);
    cursor: pointer;
}

.project-card > a {
    color: var(--primary-color);
}


.footer {
    background-color: var(--primary-color);
    margin-top: 6rem;
    color: black;
    text-align: center;
}

.footer > p {
    margin: 0;
    padding: 1rem;
}