*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter";
    color: white;
}

body,html{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
}

.container{
    width: 80%;
    height: 95%;
    background-color: #131313;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.main{
    width: 300px;
    height: 550px;
    background-color: #212121;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image{
    align-items: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
}

.image img{
    border-radius: 50%;
    width: 80px;
    margin:  20px auto;
    /* margin-top: 30px; */
    /* align-items: center; */
}

.info{
    text-align: center;
}
h1{
    font-size: 25px;
    font-weight: 500;
    margin: 5px;
}

h2{
    font-size: 14px;
    font-weight: 600;
    color:  hsl(75, 94%, 57%);
}

.text{
    margin: 20px auto;
    text-align: center;
}

p{
    font-size: 14px;
    /* margin: 20px auto; */
}


.tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* margin: 10px 0px; */

 } 



button{
    width: 270px;
    padding: 12px;
    background-color: #424141;
    border: none;
    border-radius: 7px;
    margin: 6px;
    font-weight: 600;
    font-size: 14px;
    /* cursor: pointer; */
    transition: all 0.3 ease-in-out;

}

button:hover{
    background-color: hsl(75, 94%, 57%);
    cursor: pointer;
    color: #131313;
}

