@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@500;600&display=swap');

/*font-family: 'Barlow Semi Condensed', sans-serif;*/

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

body {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 13px;
    min-height: 100vh;
    background-color: hsl(210, 46%, 95%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 1000px;
    margin: 2rem;
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
}

.card-daniel {
    background-color: hsl(263, 55%, 52%);
    background-image: url(images/bg-pattern-quotation.svg);
    background-repeat: no-repeat;
    background-position: right 4rem top;
    grid-column: span 2;
    border-radius: 0.5rem;
    padding: 1rem 2rem;
}

.card-jonathan {
    background-color: hsl(217, 19%, 35%);
    border-radius: 0.5rem;
    padding: 1rem 2rem;
}

.card-kira {
    background-color: white;
    grid-row: span 2;
    border-radius: 0.5rem;
    padding: 1rem 2rem;
}

.card-jeanette {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1rem 2rem;
}

.card-patrick {
    background-color: hsl(219, 29%, 14%);
    grid-column: span 2;
    border-radius: 0.5rem;
    padding: 1rem 2rem;
}

.profile-photo img {
    border-radius: 50%;
    border: 1px solid white;
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

.profile-photo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.description h3 {
    color: hsl(213, 19%, 91%);
    font-weight: 500;
    margin-bottom: 1rem;
}

.name {
    color: hsl(213, 19%, 91%);
}

.status {
    color: hsla(210, 17%, 91%, 0.527);
}

.description p {
    color: hsla(210, 17%, 91%, 0.527);
}

#kira-name, #jeanette-name {
    color: hsl(0, 0%, 31%);
}

#kira-status, #jeanette-status {
    color: hsla(0, 0%, 31%, 0.534);
}

#kira-title, #jeanette-title {
    color: hsl(0, 0%, 31%);
}

#kira-description, #jeanette-description {
    color: hsla(0, 0%, 31%, 0.534);
}

@media screen and (max-width: 600px) {
    .cards {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
}
