@import url('https://fonts.googleapis.com/css2?family=Cabin&display=swap');

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

:root {

    --whiteC: #d9d5d5;
    --color60: #000000;
    --color30:  #d4d3d3;
    --color10: #000000;
  }

html{
    font-size: 16px;
    background-color: bisque;
    font-family: 'Cabin', sans-serif;

}

main{

    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
    background-color: #1c1b1b;
    
    
 
}



h1{
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 2rem;
    color: #f2f2f2;
    
}

.text, .text2{
    color: #f2f2f2;
    max-width: 700px;
    margin: 1rem 1rem 0rem 1rem;
    text-align: center;
    font-size: 20px;
}

span{
    color: #b15caf;
    font-weight: bold;
    
}

.text2{
    margin-bottom: 2rem;
    font-size: 20px;
}




.main-container {
    max-width: 50rem;
    max-height: 60rem;
    width: calc(100% - 2rem);;
    height: auto;
    background-color: #f2f2f2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content:  flex-start;
    border: 1px solid var(--whiteC);
    margin-bottom: 2rem;
    border-radius: 8px;
    background-color: var(--color60);
    color: var(--color30);

  }


 .header-container{
    height: 2rem;
    width: calc(100% - 1rem);
    border: 1px solid var(--whiteC);
    margin: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 6px;
    background-color: var(--color10);

 } 

 .left-block,  .right-block,  .center-block{
    height: 1rem;
    width: 20%;
    border: 1px solid var(--whiteC);
    border-radius: 4px;
    background-color: var(--color60);
 }

 .center-block{
    width: 60%;
    
 }

 h2{
    text-align: center;
    font-weight: normal;
 }




 .body-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
 }

 .avatar{
    margin-top: 1rem;
    max-width: 100px;
    width: 100%;
    height: 100px;
    border-radius: 100%;
    border: 1px solid var(--whiteC);
    margin-bottom: 1rem;
    background-color: var(--color10);

 }

 .p-body{
    max-width: 450px;
    text-align: center;
    font-size: 0.8rem;
    margin-left: 1rem;
    margin-right: 1rem;
 }

.article-container{

        height: auto;
        width: calc(100% - 1rem);
        max-width: 500px;
        margin-top: 1rem;
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
        
    
}

.article{
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
    text-align: center;
    justify-content: center;
    align-items: center;
    max-width: 150px;
}


.article div{
    width: 100%;
    height: 50px;
    border: 1px solid var(--whiteC);
    margin-bottom: 1rem;
    border-radius: 6px;
    background-color: var(--color10);

}

button{
    width: 150px;
    height: 50px;
    border-radius: 1rem;
    font-size: 1.5rem;
    border: 1px solid black;
    background-color: #480f46;
    color: #f2f2f2;
    border: 2px solid var(--whiteC);
}



footer{
    
    margin-top: 3rem;
    text-align: center;
    color: #f2f2f2;
    margin-bottom: 1rem;

}





#colorValues{
    margin-top: 1rem;
    color: #f2f2f2;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}


#colorValues div{
    border: 2px solid var(--whiteC);
    border-radius: 8px;
}


.social-container{
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}
