@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

* {
    box-sizing: border-box;
}

body{
    padding-top: 30px;
    padding-bottom: 20px;
    color: white;
    background-color: #141414; 
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}
h5 {
    font-weight: 600; /* Semi-bold */
  }
  
h3{
    font-weight: 700; /* Bold */
  }
  
#container{
    background-color: #1f1f1f;
    padding: 10px;
    border-radius: 3px;
    margin:auto;
    width: 100%;
    max-width: 375px;
   
}
img{
    border-radius: 50%;
    width: 60px;
    display: block;
    margin-left: auto;
    margin-right: auto;

}
#btn{
    display: flex;
    flex-direction: column;
    align-items: center;
    /* padding-top: 5px; */
}
.btn1{
    font-weight: 600;
    margin-top: 10px;
    padding: 9px;
    background-color: #333333;
    border: none;
    color: #ffffff;
    width: 80%;
    justify-content: center;
    border-radius: 5px;
    transition: background 0.3s ease;
}
button:hover{
    cursor: pointer;
    background-color: #c5f82a;
}

h3, p, h5{
    text-align: center;
    margin: 0;
}
p{
    color: #c5f82a;
    margin-top: 2px;
}
h3, h5{
    margin-top: 5px;
}
@media(min-width: 576px){
     #container{
        width: 550px;
    } 
}