* {
    color: rgb(0, 0, 0);
    font-family: 'Geneva', Tahoma, Verdana, sans-serif;
}

body {
    margin: 0;

}

a {
    text-decoration: none;
}

.container {
    width: 100%;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
}

.card {
    width: 450px;
    height: 605px;
    background-color: rgba(143, 113, 154, 0.5);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.135) 0px 7px 29px 0px;
    background: transparent;
}

.profile-img {
    width: 120px;
    border-radius: 50%;
    border: #00000000 1px solid;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: translateY(-65px);
    margin-top: 35px;
}

.container-text {
    margin-top: -45px;
    text-align: center;
}

h1.name {
    margin: 0;
    text-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

h3.desc {
    margin: 5px;
    color: rgba(160, 82, 9, 0.963);
    font-weight: 400;
    text-shadow: rgb(0, 0, 0) -1px 0px 0px;
}

.socials button {
    padding: 3px 50px;
    min-width: 300px;
    line-height: 24px;
    position: relative;
    text-align: center;
    display: block;
    margin: 15px;
    background-color: transparent;
    height: 45px;
    cursor: pointer;
    border: #968d0f6b 1px solid;
    font-size: 15px;
    border-radius: 3px;
    margin-bottom: 20px;
}

.socials i {

    font-size: 15px;
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
}

button:hover,
i:hover {
    background-color: bisque;
    color: #96500ff1;
}

/* Smartphone */
@media only screen and (max-width: 787px) {
    .container {
        margin: 0px;
        width: auto;
    }

    .profile-img {
        margin-top: 73px;
    }

    .card {
        height: 600px;
    }


}