@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

* {
    animation: fadeIn 0.45s ease-in-out;
    font-family: 'Inter', sans-serif;
}
html {
    scroll-behavior: smooth;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.title {
    font-size: clamp(2rem, 8vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}


.background:nth-child(even) {
    width: 100%;
    background-color: #fdfcfb;
}


.name {
    font-weight: 600;
    color: #333;
}

.summary, .projects, .About {
    min-height: 5vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}


@media (min-width: 768px) {
    .summary, .projects {
        padding: 4rem;
        align-items: center;
        text-align: center;
    }
}