* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: rgb(3, 3, 3);
}

.container {
box-shadow: #ff003a 0px 5px 15px;
    border-radius: 15px;
    top: 150px;
    left: 700px;
    background: #100f0f;
    height: 700px;
    width: 500px;
    position: absolute;

}

img {
    /* justify-content: center; */
    /* align-items: center; */
    position: relative;
    top: 30px;
    left: 190px;
    height: 120px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    box-shadow: 0 0 50px #ff003a, 0 0 100px rgba(255, 0, 60, 0.5),
        0 0 150px rgba(255, 0, 60, 0.3);
    animation: glow 3s infinite alternate, morph 12s ease-in-out infinite;
    object-fit: cover;
    background: linear-gradient(45deg, #ee0707, #050505);
    border: 6px solid transparent;
}



p {
    font-weight: 600;
    color: #ffffff;
    font-family: "Orbitron", sans-serif;
    position: relative;
    /* color: rgb(1, 1, 1); */
    font-size: 2.8rem;
    top: 35px;
    text-align: center;
}

.web {
    font-family: "Orbitron", sans-serif;
    font-weight: 600;
    color: #ffffff;
    font-size: 1.5rem;
    margin-top: 30px;
}

span {
    display: block;
    font-family: "Exo 2", sans-serif;
    /* font-weight: 600; */
    color: #aaaaaa;
    font-size: 1.6rem;
    margin-top: 80px;
    text-align: center;
}

.social-links {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
    margin-top: 60px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    font-size: 1.8rem;
    transition: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: #ff003a;
    color: #000;
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(255, 0, 60, 0.4);
    border-color: #ff003a;
}

button {
    width: 80%;
    top: 20px;
    margin: 0px 50px 0px 50px;
   
    padding: 16px 38px;
    background: transparent;
    color: #ff003a;
    border: 2px solid #ff003a;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 25px rgba(255, 0, 60, 0.3);
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}

button:hover {
    color: #ff003a;
    font-weight: 700;
    /* color: var(--neon-red); */
    transform: translateY(-5px);
    box-shadow: 0 0 40px #ff003a;
    cursor: pointer;
}

button:hover::before {
    background: black;
    width: 100%;
}