:root{
    --title-color:#F5F6FA;
}

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

body{
    display: grid;
    gap: 0;
    align-content: center;
    position: relative;
    background: url(../images/background.svg) no-repeat;
    background-size: cover;
    background-position: top;
}

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

    
}

.rope{
    background: url(../images/rope.png);
    width: 4.25rem;
    height: 5.5rem;
    margin: 0 auto;
    position: relative;
    top: -30px;
    visibility: hidden;
    
   
    
}

.title{
    color: var(--title-color);
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 1.62rem;
    margin-bottom: .2rem;
}

.description{
    color: var(--title-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.content {
    display: grid;
    gap:1rem;
    width: 100%;
    height: 100vh;
    max-width: 24rem;
    max-height: 52rem;
    background: url(../images/bg.svg) no-repeat ;
    background-color: #2F3640;
    margin: 0 auto;
    justify-content: center;
    box-shadow: .1rem .05rem .5rem black;
}


.logo{
    width: 9rem;
    height:auto;
    margin: 0 auto;
    z-index: 3;
}



#avatar{
    width: 10rem;
    margin: 0 auto ;
}

#avatar > img{
    width: 10rem;
    height: 11.5rem;
    object-fit: cover;
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);

}

.name{
    display: flex;
    flex-direction: column;
    align-items: center;
    
}


.name p {
    color: var(--title-color);
    font-size: .9rem;
    font-family: 'Poppins', sans-serif;
    font-weight:400;
}

.social-buttons {
   display: inline-flex;
   justify-content: center;
   align-items: center;
   gap: 1rem;

}

.social-button{
    background-color: #192A56;
    width:5rem;
    height: 5rem;
    display: grid;
    justify-content:center;
    align-items:center;
    border-radius: 5px;
}

.social-button:hover{
    transform: scale(1.1);
}


.footer{
    color: var(--title-color);
    font-size: .7rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    text-align: center;
    margin-bottom: 1rem;

}



@media screen and (min-width: 386px){
    .rope{
        visibility: visible;
        top: -60px;
    
    }

    .container{
        height: 80%;
    }
}