body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px 20px 20px;
}
.container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.profile-image {
    flex-shrink: 0;
    width: 200px;
    height: 250px;
    border-radius: 10%;
    object-fit: cover;
}
.content {
    flex-grow: 1;
}
h1 {
    font-size: 2rem;
}
h2 {
    font-size: 1.5rem;
}
ul {
    padding-left: 20px;
}
a {
    color: #0066cc;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
.socails {
    font-size: 12px;
    text-align: center;
}


@media (min-width: 768px) {
    .container {
        flex-direction: row;
    }
}
@media (max-width: 768px) {
    .image-profile {
        text-align: center;
    }
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1rem;
    }
    .container {
        gap: 10px;
    }
}