@import url('https://fonts.googleapis.com/css2?family=Miniver&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    line-height: 1.6;
    background-color: black;
    color: white;
}

header.parallax {
    position: relative;
    background-image: url('i.png'), url('m.png'), url('g.png'), url('img.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    height: 100vh;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

header .content {
    z-index: 2;
}

.contact-us .contact button img {
    height: 50px;
    width: 50px;
    position: center;
}

.contact-us .contact button {
    background: transparent;
    border-radius: 100%;
    border: none;
    box-shadow: none;
    outline: none;
    mix-blend-mode: multiply;
}

.about .about-heading-text {
    color: white;
    font-weight: 100px;
    font-weight: 400;
    text-align: center;
    display: inline-block;
    position: relative;
    transition: color 0.3s ease;
    font-size: 2rem;
    font-weight: bold;
    margin: 40px 20px;
}

.about .person-img img {
    float: right;
    height: 300px;
    width: 300px;
}

.about .about-heading-text:hover {
    color: blueviolet;
    border-radius: 50%;
    cursor: pointer;
}

.about .about-text-info {
    font-size: 20px;
    font-weight: 200px;
    font-weight: 500;
}

.about-heading-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 6px;
    background: radial-gradient(circle at 50% 100%, #a020f0 0%, #4b0082 100%);
    border-radius: 50px;
    box-shadow: 0 2px 6px rgba(160, 32, 240, 0.6);
}

.skills .skills-heading-text {
    color: white;
    font-weight: 100px;
    font-weight: 400;
    position: relative;
    text-align: center;
    display: inline-block;
    transition: color 0.3s ease;
    font-size: 2rem;
    font-weight: bold;
    margin: 40px 20px;
}

.skills .skills-heading-text:hover {
    color: blueviolet;
    border-radius: 50%;
    cursor: pointer;
}

.skills .skills-heading-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 6px;
    background: radial-gradient(circle at 50% 100%, #a020f0 0%, #4b0082 100%);
    border-radius: 50px;
    box-shadow: 0 2px 6px rgba(160, 32, 240, 0.6);
}

.skills img {
    display: flex;
    width: 150px;
    height: 150px;
}

.skills p {
    font-weight: bold;
    font-size: 25px;
    margin-left: 20px;
}

.connect .connect-heading-text {
    color: white;
    font-weight: 100px;
    font-weight: 400;
    text-align: center;
    display: inline-block;
    position: relative;
    transition: color 0.3s ease;
    font-size: 2rem;
    font-weight: bold;
    margin: 40px 20px;
}

.connect .connect-heading-text:hover {
    color: blueviolet;
    border-radius: 50%;
    cursor: pointer;
}

.connect .connect-heading-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 6px;
    background: radial-gradient(circle at 50% 100%, #a020f0 0%, #4b0082 100%);
    border-radius: 50px;
    box-shadow: 0 2px 6px rgba(160, 32, 240, 0.6);
}

.connect .connect-text {
    font-size: 20px;
    font-weight: 200px;
    font-weight: 500;
}

.connect .connect-img img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 150px;
    width: 150px;
}