*{
    margin: 0;
    padding: 0;
}
body{
    font-family: sans-serif;
    background-color: rgb(27, 27, 27);
}
.main{
    justify-content: center;
    align-items: center;
    display: flex;
    height: 100vh;
}
.container{
    border: 2px solid white;
    border-radius: 15px;
    background-color: rgb(52, 49, 49);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30%;
    padding-bottom: 20px;
}
img{
    margin: 20px 0 0;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100px;
    margin-bottom: 10px;
}
.header{
    text-align: center;
}
h2{
    color: rgb(255, 235, 0);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 
    'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 
    'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 100;
    font-size: 22px;
    text-align: center;
    margin-bottom: 20px;
}
h3{
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 10px;
}
button{
    display: flex;
    flex-direction: column;
    padding: 5px;
    margin: 10px;
    border: 1px solid white;
    border-radius: 5px;
    background-color: rgb(66, 66, 66);
    color: white;
    width: 350px
}
.button button{
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    text-align: center;
    font-size: 14px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 
    Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.button button:hover{
    cursor: pointer;
    background-color: #f1bfbf;
    color: black;
    width: 360px;
    border: 1px solid red;
    transition: 0.1s ease;
    transform-origin: center;
    transform: scale(1.1);
    font-size: 15px;
}