@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
    font-family: 'Poppins', sans-serif;
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(90deg, #efe8dd 50%, #cbc9b2 50%, #cbc9b2 65%, #efe8dd 65%);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    color: white;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img{
    z-index: -99;
    position: fixed;
    height: 100%;
    translate: -65% -50%;
}

.container{
    background: #4f4f4f;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    width: 18.75rem;
    max-width: 80%;
}

.profile{
    width: 6.25rem;
    height: 6.25rem;
    border-radius: 50%;
    object-fit: cover;
    border: .375rem solid #efe8dd;
}

.link{
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: #cbc9b2;
    padding: 0.3125rem 0.625rem;
    border-radius: 0.625rem;
    margin: 1.25rem 0;
    text-decoration: none;
}

p{
    color: white;
    font-weight: 600;
}