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

body {
    display: grid;
    place-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background: #F5EDF7;
    min-height: 100vh;
    margin: auto;
    padding: 2rem;
}

a {
    text-decoration-color: #3D1860;
    color: #3D1860;
    text-decoration-style: solid;
    text-decoration-thickness: 0.125rem;
}

a:hover {
    color: #643579;
    text-decoration-style: wavy;
}

.container {
    max-width: 60rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
}

.profile-section {
    grid-column: 1 / -1;
    background: #BB99CD;
    border: 2px solid #3D1860;
    padding: 2rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
    box-shadow: 
        5px 5px 0 #643579,
        10px 10px 0 #3D1860;
}

.profile-image {
    width: 7.5rem;
    height: 7.5rem;
    border-radius: 50%;
    background: #F5EDF7;
    border: 2px solid #3D1860;
    box-shadow: 
        3px 3px 0 #643579,
        6px 6px 0 #3D1860;
}
.profile-section:hover .skill {
    font-weight: 600;
    transform: translate(1px, 1px);
}

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

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

.about-me p {
    color: #3D1860;
    line-height: 1.6;
}

.hobbies, .aspirations {
    background: #BB99CD;
    border: 2px solid #3D1860;
    padding: 2rem;
    box-shadow: 
        5px 5px 0 #643579,
        10px 10px 0 #3D1860;
}

.hobbies:hover, .aspirations:hover {
    border-style: dashed;
    border-color: #643579;
    transition: all 500ms ease;
}

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

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

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

.hobbies li::before, .aspirations li::before {
    content: "-";
    color: #643579;
    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 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .profile-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .profile-image {
        justify-self: center;
        width: 100px;
        height: 100px;
    }
    
    .hobbies, .aspirations {
        padding: 1.5rem;
    }
}