/*

## Colors

- Green: hsl(75, 94%, 57%)

- White: hsl(0, 0%, 100%)

- Grey 700: hsl(0, 0%, 20%)
- Grey 800: hsl(0, 0%, 12%)
- Grey 900: hsl(0, 0%, 8%)

## Typography

### Body Copy

- Font size (paragraph): 14px

### Font

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

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

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.card {
    background: hsl(0, 0%, 12%);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 90%;
    transition: all 0.3s ease-in-out;
}

.card-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.info {
    color: hsl(0, 0%, 100%);
}

.info h3 {
    color:  hsl(75, 94%, 57%);
    margin-top: 15px;
}

.info p{
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 16px;
}


.card-item {
    background: hsl(0, 0%, 20%);
    padding: 15px;
    padding-left: 20px;
    padding-right: 25px;
    color: white;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-item:hover{
    background-color:hsl(75, 94%, 57%) ;
    color: black;
}

.card-item p {
    font-size: 1rem;
}



/* Responsive Design 
@media (min-width: 375px) {
    .card {
        width: 90%;
    }
}

@media (min-width: 1440px) {
    .card {
        width: 400px;
    }
}
    */