@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

*{
    padding: 0;
    margin: 0;
}

body{
    font: 18px "Nunito", sans-serif;
    color: black;
    height: 100vh;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(bg-1.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
        
}

@keyframes backgroundZoomAnimate {
    from{
        transform : scale(1);
    }
    to{
        transform: scale(1.3);
    }
}

.profile-card{
    box-shadow: 0 18px 200px -60px black;
    border-radius: 50px;
    max-width: 450px;
    margin: 2rem;
    width: 95%;
    position: relative;
    backdrop-filter: blur(15px);
    border: 2px solid #ffffff40;
    /* padding: 3rem 5rem; */
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    font-size: 20px;
}

.profile-card .profile-card_img{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    border: 2px solid rgba(13, 28, 39, 0.5);
    border-radius: 50%;
    overflow: hidden;
}

.profile-card .profile-card_img img{
    border-radius: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 10px 60px -10px rgba(13, 28, 39, 0.5);
}

@media (max-width: 400px){
    .profile-card .profile-card_img{
        width: 50%;
        height: 50%;
    }
}
    
.profile-card .profile-card_desc{
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 25px;

}

.profile-card .profile-card_desc h1{
    font-size: clamp(20px, 10vw, 2.5rem);
    font-weight: bold;
}

.profile-card .profile-card_info {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    letter-spacing: 1px;
    text-align: center;
    font-weight: bold;
    font-size: clamp(16px, 10vw, 1.5rem);
    margin-bottom: 15px;
}

.profile-card .profile-card_social{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

}

.profile-card .profile-card_social a{
    display: inline-flex;
    width: 55px;
    height: 55px;
    margin: 15px;
    border-radius: 40%;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s;
    max-width: 768px;
    font-size:35px;

}

.profile-card .profile-card_social a:hover{
    transform: scale(1.2) translateY(-5px);
}

.profile-card .profile-card_social .facebook{
    background: linear-gradient(45deg, #3b5998, #0078d7);
    box-shadow: 0 4px 30px rgba(43, 98, 169, 0.5);
}

.profile-card .profile-card_social .twitter{
    background: linear-gradient(45deg, #0078d7, #00a6ff);
    box-shadow: 0 4px 30px rgba(19, 127, 212, 0.7);
}
.profile-card .profile-card_social .insta{
    background: linear-gradient(45deg, #3b5998, 
    #5851db, 
    #833ab4,
    #c1306c,
    #e1306c,
    #fd1d1d,
    #ff0000);
    box-shadow: 0 4px 30px rgba(255, 0, 81, 0.5);
}
.profile-card .profile-card_social .youtube{
    background: linear-gradient(45deg, #ffffff, #ffffff);
    box-shadow: 0 4px 30px rgba(255, 0, 0, 0.5);
    color: red;
}

.profile-card .profile-card_social .github{
    background: linear-gradient(45deg, #000000, #00000f);
    box-shadow: 0 4px 30px rgba(7, 21, 39, 0.5);
}

.profile-card .profile-card_actions{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: .2s linear;
}

.profile-card .profile-card_actions button{
    font-weight: bold;
    font-size: 18px;
    padding: 15px 40px;
    min-width: 25px;
    border-radius: 50px;
    border-style: none;
    color: white;
    cursor: pointer;
    transition: .2s linear;
}


.profile-card .profile-card_actions button:hover{
    transform: translateY(-5px);
    box-shadow: 0 7px 30px rgba(29, 108, 219, 0.75);
}

.profile-card .profile-card_actions .blue{
    background: linear-gradient(45deg, #1da1f2, #0e71c8);
    box-shadow: 0 4px 30px rgba(19, 127, 212, 0.4);
}

.profile-card .profile-card_actions .blue:hover{
    box-shadow: 0 7px 30px rgba(29, 108, 219, 0.75);
    cursor: pointer;
    background-color: #2c0747;
}

.profile-card_actions a{
    font-weight: bold;
    font-size: 18px;
    padding: 15px 40px;
    min-width: 25px;
    border-radius: 50px;
    border-style: none;
    text-align: center;
    color: white;
    cursor: pointer;
    background: linear-gradient(45deg, #1da1f2, #0e71c8);
    box-shadow: 0 4px 30px rgba(19, 127, 212, 0.4);
    transition: .2s linear;
}

.profile-card_actions a:hover{
    transform: translateY(-5px);
    box-shadow: 0 7px 30px rgba(29, 108, 219, 0.75);
    cursor: pointer;
    background-color: #2c0747;

}

.profile-card .profile-card_actions .orange{
    background: linear-gradient(45deg, #d5135a, #f05924);
    box-shadow: 0 4px 30px rgba(223, 45, 70, 0.35);
}

.profile-card .profile-card_actions .orange:hover{
    box-shadow: 0 7px 30px rgba(219, 29, 73, 0.75);
}

.wrapper h2{
    margin-bottom: 20px;
}


h3{
    text-align: center;
    color: #413b3b;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 80px;
    font-family: zen tokyo zoo;
}

h5{
    text-align: center;
    color: #82807f;
    margin: 80px auto;
    font-size: 20px;
    width: 50%;
}

.box{
    align-items: center;
}

.button{
    font-size: 1em;
    padding: 15px 35px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: all .3s ease-out;
    background: #403e3d;
    border-radius: 50px;
}

.overlay{
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .8);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
}

.overlay:target{
    visibility: visible;
    opacity: 1;
}

.wrapper{
    padding: 20px;
    background: #e7e7e7;
    border-radius: 5px;
    width: 95%;
    max-width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    transition: all .5s ease-in-out;
}

.wrapper h2{
    margin-top: 0;
    color: #333;
}

.wrapper .close{
    position: absolute;
    top: 20px;
    right: 30px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
}

.wrapper .content{
    width: 100%;
}


.wrapper .content .container{
    border-radius: 5px;
    background: #e7e7e7;
}

form{
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

form label{
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}

input[type=text], textarea{
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}

textarea{
    height: 80px;
}

input[type="submit"]{
    background-color: #413b3b;
    color: #fff;
    padding: 15px 50px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: .2s linear;
}

input[type="submit"]:hover{
    background:#00000f;
}









