@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
    body {
            font-family: 'Poppins', sans-serif;
            background-color: #000;
            background-image: url(../images/BACKG.jpg);
            background-repeat: no-repeat;
            color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            margin: 20px;
        }

.logo h1 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

.logo span {
    color: #00e5ff;
}

.main-content {
    text-align: center;
}

.profile-pic {
    margin: auto;
    margin-bottom: 20px;
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.8);
}
.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.buttons .btn {
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    transition:0.3s;
}

.buttons .hire {
    background-color: #00e5ff;
}

.buttons .contact {
    background-color: transparent;
    border: 2px solid #00e5ff;
}

.buttons .contact:hover {
    background-color: #00e5ff;
    color: #000;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    font-size: 20px;
    color: #00e5ff;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #fff;
}
.intro h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 10px;
}

.intro p {
    font-size: 18px;
    margin-bottom: 20px;
}

.intro p span {
    color: #00e5ff;
}

