
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    background-color: #ffffff;
    color: #111;
    line-height: 1.6;
}

section {
    padding: 90px 10%;
    text-align: center;
}

h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

p {
    color: #444;
}

section:first-of-type {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #000;
    color: #fff;
}

section:first-of-type p {
    color: #ccc;
    margin-bottom: 30px;
}

.home-button {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.home-button a {
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #fff;
}

.assigment {
    background: #fff;
    color: #000;
}

.about {
    background: transparent;
    color: #fff;
}

.home-button a:hover {
    background: #fff;
    color: #000;
}

.project {
    background: #fff;
    max-width: 350px;
    margin: 40px auto;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.project:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.project img {
    width: 100%;
    height: 200px;
    object-fit:contain;
}

.project-content {
    padding: 20px;
    display: flex;
    justify-content: space-between;
}

.project-content {
    padding: 20px;
    display: flex;
    gap: 5px;
}

.project-content p {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    letter-spacing: 0.5px;
}

.project-content a {
    text-decoration: none;
    padding: 8px 18px;
    background: #000;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    transition: 0.3s ease;
    width:fit-content;
}

.project-content a:first-of-type {
    margin-right: 10px;
}

.project-content {
    align-items: flex-start;
}

.project-content a:hover {
    background: #333;
}

.about-page{
    height: 100vh;
    background-color: #000;
    color: #fff;
}
section:last-of-type img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin: 20px 0;
    border: 2px solid #000;
}

section:last-of-type p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
    color: #fff;
}

@media (max-width: 768px) {

    section {
        padding: 70px 6%;
    }

    .home-button {
        flex-direction: column;
        gap: 15px;
    }

    h2 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {

    section:first-of-type {
        padding: 40px 5%;
    }

    h2 {
        font-size: 22px;
    }

    .project {
        max-width: 100%;
    }

    .project-content {
        flex-direction: column;
        gap: 10px;
    }
}
