/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* root styles */

html {
    font-size: 16px;
}

body {
    min-height: 100vh;
    box-sizing: border-box;


    font-family: 'Inter', sans-serif;
    background-color: #141414;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Card Alignment Styles */

.cardContainer,.cardBody {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cardContainer {
    width: 100%;
    max-width: 400px;
    background-color: #1f1f1f;
    padding: 2rem;
    box-sizing: border-box;
    border-radius: 0.75rem;
}

/* img styles */

.mainImg {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1.75rem;

}

/* heading styles */




.name {
    font-weight:500;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.location {
    color: #C4F82A;
    margin-bottom: 1.5rem;
}

.information {
    font-weight: 400;
    margin-bottom: 1.5rem;
    
}

/* Button Styles */

ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

ul li {
    display: block;
    margin-bottom: 1rem;
    width: 100%;

}

.btn {
    display: block;
    font-weight: bold;
    text-align: center;
    background-color: #333;
    padding: 0.75rem 0.5rem;
    border-radius: 0.5rem;
}

.btn:hover {
    background-color: #C4F82A;
    color: #333;
    transition: color 0.3s ease;
}


/* Attribution styles */

.attribution {
    display: none;
}


/* Media Queries */

@media (max-width: 450px) {

    .cardContainer {
        padding: 1rem;
        max-width: 300px;
    }

    .cardBody {
        text-align: center;
    }

    ul li{
        justify-content: center;
        width: 80%;
    }


}