*{
    margin: 0;
    padding: 0;
}

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

.box{
    width: 400px;
    background-color: hsl(0, 0%, 12%);
    padding: 3rem;
    border-radius: 10px;
}

img {
    width: 100px; /* Adjust the size as needed */
    height: 100px; /* Keep it equal for a perfect circle */
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 20px; /* Center the image */
}
.box h2{
    color: white;
    font-weight: 600;
    display: flex;
    justify-content: center;
    padding-bottom: 10px;
}
.box h4{
    color: hsl(75, 94%, 57%);
    display: flex;
    justify-content: center;
    padding-bottom: 10px;
}
.box p{
    color: white;
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
    font-size: 12px;
}
.buttons{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}
button{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    border-radius: 10px;
    color: white;
    background-color: hsl(0, 0%, 20%);
    font-weight: 600;
    font-size: 1rem;
    width: 100%;  
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    
}

button:active{
    background-color: hsl(75, 94%, 57%);
    color: black;
}

@media (max-width: 375px) {
    .box {
        width: 90%;  
        padding: 2rem; 
    }

    button {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}
