﻿body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.7;
}

h1, h2, h3, h4, h5 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.profile-img {
    width: 180px;
    height: 180px;
    border: 6px solid #000;
    object-fit: cover;
}

.section-title {
    border-bottom: 4px solid #000;
    padding-bottom: 10px;
    margin-bottom: 24px;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.skill-tag {
    background: #000;
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

a {
    color: #000;
    text-decoration: underline;
}

    a:hover {
        opacity: 0.7;
    }


/*‌Back animation*/

:root {
    --c1: #ffffff;
    --c2: #888;
    --angle: 135deg;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    background: linear-gradient(var(--angle), var(--c1), var(--c2));
    background-size: 400% 400%;
    background-attachment: fixed;
    animation: breathing 10s ease-in-out infinite;
    min-height: 100vh;
}

@keyframes breathing {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

