@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
    margin: 0;
    font-family: "Press Start 2P", system-ui;
    background: #111;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

main {
    max-width: 1000px;
    width: 90%;
    text-align: center;
}

#name {
    margin-bottom: 40px;
    font-size: 42px;
    letter-spacing: 2px;
}

#profile-img {
    width: 200px;
    border-radius: 20px;
    transform: rotate(-3deg);
    transform: scale(50px);
    box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.6);
    margin-bottom: 40px;
    transition: transform 0.4s ease;
}
#profile-img:hover {
    transform: rotate(3deg);
    transition: transform 0.4s ease;
}

.boxes {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}
.boxes div {
    background: #1b1b1b;
    padding: 30px;
    width: 400px;
    border: 2px solid #333;
    border-radius: 15px;
    box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.6);
    text-align: left;
}
.boxes div h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 20px;
    letter-spacing: 1px;
}
.boxes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.boxes ul li {
    font-size: 13px;
    margin-bottom: 10px;
    color:#cccccc;
}

@media (max-width: 700px) {
    .boxes {
        flex-direction: column;
        align-items: center;
    }
}