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

@font-face {
    font-family: "Inter";
    src: url(./assets/fonts/Inter-Regular.woff2), format(woff2);
     font-weight: 400;
    font-style: normal;
    font-display: swap;
}

body{
    font-family: 'Inter', sans-serif;
    background-color:  hsl(0, 0%, 8%);
     min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container{
    width: 380px;
    background-color:  hsl(0, 0%, 12%);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
}

.img-container img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 25px;
}

.info h1{
    color: white;
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.info h4{
    color: #A7E322;
    font-size: 0.95rem;
    margin-bottom: 28px;
    font-weight: 600;
}

.info p {
    color: hsl(0, 0%, 80%);
    font-size: 14px;
    margin-bottom: 25px;
}

.btn{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn button{
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 9px;
    background-color:  hsl(0, 0%, 25%);
    color: white;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn button:hover{
    background-color: #A7E322;
    color:  hsl(0, 0%, 8%);
}
