@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@800&family=Nunito:wght@400;700&family=Tilt+Warp&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    ;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url(../images/1298880.png);
}
.container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 290px;
    flex-wrap: wrap;
    z-index: 1;

}

.container .card {

    width: 90%;
    height: 90%;
    max-width: 1000px;
    max-height: 560px;
    color: #fff;
    text-align: center;
    padding: 20px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(30, 30, 30, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 10px rgb(0, 0, 0);
    user-select: none;
}

.card img {
    user-select: none;
    width: 150px;
    border-radius: 50%;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 5px;
    user-select: none;
}
 
.container h1{
    font-family: 'Nunito Sans', sans-serif;
    color: #f8e8f3;
    font-size: 25px;
    margin-top: 5px;
}

.name {
    font-family: 'Nunito Sans', sans-serif;
    color: #f8e8f3;
    font-size: 25px;
    margin-top: 5px;
}

.container p{
    font-size: 18px;
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
    margin: 3px auto;
    max-width: 380px;
    user-select: none;
    color: #f8e8f3;
    margin-top: 0px;
}

.btn-Instagram {
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Nunito', sans-serif;
    text-align: center;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: hsl(29, 8%, 65%);
    height: 50px;
    width: 225px;
    line-height: 3;
    border-radius: 13px;
    margin: 10px 0 10px;
    transition: 1s;
}

.btn-Instagram:hover {
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0);
    background-color: #e2e2e2;
    font-weight: medium;
    box-shadow: 0 0 10px #a4a4a4;
    color: #000000;
}
