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

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background: #FFC2C2;
    min-height: 100vh;
    margin: auto;
    padding: 2rem;
}

a {
    text-decoration-color: #010A43;
    color: #010A43;
    text-decoration-style: solid;
    text-decoration-thickness: 0.125rem;
}

a:hover {
    color: #FF2E63;
    text-decoration-style: wavy;
    transition: all 300ms ease;
}

.container {
    max-width: 60rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.profile-section {
    background: #FF9D9D;
    border: 2px solid #010A43;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow:
        5px 5px 0 #FF2E63,
        10px 10px 0 #010A43;
}

.profile-section:hover .skill {
    font-weight: 600;
    transform: translate(1px, 1px);
    transition: all 500ms ease;
}

.profile-image {
    width: 7.5rem;
    height: 7.5rem;
    border-radius: 50%;
    background: #FFC2C2;
    border: 2px solid #010A43;
    box-shadow:
        3px 3px 0 #FF2E63,
        6px 6px 0 #010A43;
    flex-shrink: 0;
}

.about-me {
    flex: 1;
}

.about-me h1 {
    color: #010A43;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.about-me h2 {
    color: #010A43;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-me p {
    color: #010A43;
    line-height: 1.6;
}

.bottom-section {
    display: flex;
    gap: 2rem;
}

.hobbies,
.aspirations {
    background: #FF9D9D;
    border: 2px solid #010A43;
    margin-bottom: 1.25rem;
    padding: 2rem;
    flex: 1;
    box-shadow:
        5px 5px 0 #FF2E63,
        10px 10px 0 #010A43;
}

.hobbies:hover,
.aspirations:hover {
    border-style: dashed;
    border: 2px #FF9D9D solid dashed !important;
    border-color: #FF9D9D;
    background: #FF2E63;
    color: #FF9D9D;
    transition: all 250ms ease;
    box-shadow:
        -5px 5px 0 #FF9D9D,
        -10px 10px 0 #010A43;
}

.hobbies h2,
.aspirations h2 {
    color: #010A43;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hobbies ul,
.aspirations ul {
    list-style: none;
}

.hobbies li,
.aspirations li {
    color: #010A43;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.hobbies li::before,
.aspirations li::before {
    content: "-";
    color: #FF2E63;
    font-weight: 600;
    position: absolute;
    left: 0;
}

footer {
    padding: 1.5rem 0 0 0;
    text-align: center;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .container {
        gap: 1.5rem;
    }

    .profile-section {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .profile-image {
        width: 100px;
        height: 100px;
    }

    .bottom-section {
        flex-direction: column;
    }

    .hobbies,
    .aspirations {
        padding: 1.5rem;
    }
}