*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    height: 100%;
    background-image: url(images/background_img.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.card{
    background-color: #1b1b1b;
    width: 350px;
    height: 530px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
}

.pp_section{
    background-color: #fff;
    /* width: 200px; */
    height: 280px;
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -10%);
    border-radius: 50%;
}

#ppimg{
    width: 250px;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -45%);
    border-radius: 50%;
}

h1{
    font-size: 30px;
    color: #fff;
    width: 300px;
    text-align: center;
    position: absolute;
    top: 68%;
    left: 50%;
    transform: translate(-50%, -75%);
    font-family: YouTube Sans,Roboto,Noto Naskh Arabic UI,Arial,sans-serif;
}

.icon_container{
    width: 300px;
    text-align: center;
    position: absolute;
    top: 78%;
    left: 50%;
    transform: translate(-50%, -75%);
    display: flex;
    justify-content: space-evenly;
}

.icon_container a {
    font-size: 30px;
    color: #fff;
    transition: 0.4s;
}

.icon_container a:hover {
    color: #8CB882;
}

#button{
    position: absolute;
    top: 92%;
    left: 50%;
    transform: translate(-50%, -92%);
    border: none;
    background: #8CB882;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: bold;
    font-family: YouTube Sans,Roboto,Noto Naskh Arabic UI,Arial,sans-serif;
}

.link{
    font-size: 15px;
    text-decoration: none;
    color: #0f0f0f;
    transition: 0.4s;
}

.link:hover {
    color: #fff;
}