body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #fff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    max-width: 500px;
    width: 90vw;
    padding: 2rem;
    border-radius: 1rem;
}

.profile-img {
    width: 170px;
    height: 170px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid #fff;
}

h1 {
    font-size: 3rem;
    margin: 0.5rem 0;
}

h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.links img {
    width: 36px;
    height: 36px;
    border-radius: 25%;
    padding: 6px;
    background: none;
    border: 2px solid #fff;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.links a:hover img {
    box-shadow: 0 0 8px #000;
    border-color: #ccc;
}

.about {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 0.5rem;
}

.resume-btn {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: bold;
    background: #fff;
    color: #212121;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: box-shadow 0.2s;
}

.resume-btn:hover {
    box-shadow: 0 0 16px #000;
}

#bg-carousel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    transition: transform 3.0s cubic-bezier(0.77, 0, 0.175, 1),
        opacity 3.0s;
    opacity: 1;
}