body {
    margin: 0;
    font-family: arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

main {
    padding-bottom: 20px;
    height: 100%;
}

.image {
    display: flex;
    overflow: hidden;
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background-color: aquamarine;
    height: 75px;
}

.pixel {
    img {
        overflow: hidden;
        background-size: cover;
        width: 100%;
        height: 775px;
        object-fit: cover;
    }
}

.nav-menu {
    display: flex;
    flex-direction: row;
    gap: 35px;
    list-style: none;

    a {
        text-decoration: none;
        color: darkslategray;
        background-color: white;
        padding: 5px;
        border-radius: 10px;
        font-size: 25px;
        font-weight: bold;
    }

    a:hover {
        background-color: gray;
    }
}

.name {
    position: absolute;
    top: 38%;
    left: 0;
    right: 0;
    z-index: 1;
    transform: translateY(-50%);
    margin: 0;
    font-size: 3rem;
    text-transform: uppercase;
    text-align: center;
    color: gold;
    -webkit-text-stroke: 3px black;
    backdrop-filter: blur(3px);
}

.me {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding-inline: 8%;
    line-height: 35px;
}

.projects {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.boxes {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    max-width: 1000px;
    width: 100%;

    .box {
        width: 25%;
        border: 1px solid darkslategray;
        border-radius: 50px;
        height: 250px;
        align-items: center;
        background-color: lightgray;
        max-width: 250px;

        .first {
            width: 100%;
            border-bottom: 1px solid darkslategray;
            display: flex;
            justify-content: center;
        }

        ul {
            display: flex;
            justify-content: center;
            list-style: none;
            gap: 10px;
            padding: 0px;
        }

        li {
            display: flex;
            text-align: center;
            background-color: darkgrey;
            padding: 10px;
            border-radius: 50px;
        }

        li:hover {
            background-color: aquamarine;
            transition: all 250ms ease-in-out;
        }
    }

    .box:hover {
        border: 1px solid deepskyblue;
        background-color: deepskyblue;
        transition: all 2s ease;
    }

    h2 {
        display: flex;
    }
}

.pics {
    display: flex;
    justify-content: center;
    height: 250px;

    img {
        width: 100px;
    }
}

.footer {
    background-color: gray;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30%;
    padding: 20px;
}