
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');
body{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: hsl(0, 0%, 8%);
    font-family: "Inter", sans-serif;
    color: white;
    height: 100vh;
}
.container{
    width: 300px;
    background-color:  hsl(0, 0%, 12%);
    text-align: center;
    padding: 25px;
    border-radius: 12px;
}
img{
    height: 100px;
    width: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
   
}
h1{
    font-size: 24px;
    margin-bottom: 2px;
}
h3{
    font-size: 14px;
    color: hsl(75, 94%, 57%);
    margin-bottom: 18px;
}
p{
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 20px;
    color: hsl(0, 0%, 100%);
}
a{
    display: block;
    text-decoration: none;
    width: 90%;
    border-radius: 10px;
    padding: 12px;
    color: white;
    background-color: hsl(0, 0%, 20%);
    border: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    margin: 8px;
    transition: 0.3s ease;
}



a:hover{
    background-color: hsl(75, 94%, 57%);
    color: black;
    transform: scale(1.03);
}



@media (max-width:375px){
    .container{
        width: 90%;
    }
}