* {
    font-family: "Farsan", cursive;
}

body {
    background-color: rgb(255, 250, 231);
}

/* Header */
.header-img {
    width: 72px;
    aspect-ratio: 1/1;
}


header {
    background-color: rgb(1, 118, 95);
    display: flex;
    justify-content: space-between;
    padding: 16px;
}

/* Website Title */
h1 {
    justify-self: center;
    padding-top: 16px;
    font-size: 3rem;
    color: rgb(255, 250, 231);
}

/* Card Sections */
.card-img {
    border-radius: 16px;
    align-self: center;
    width: 225px;
    object-fit: cover;
    aspect-ratio: 2/3
}

p {
    color: white;
    font-size: 1.1rem;
}

h3 {
    padding: 16px 48px;
    color: white;
    font-size: 1.5rem;
    width: fit-content;
    background-color: rgb(200, 98, 34);
    border-radius: 16px;
    align-self: center;


}

nav{
    display: flex;
    flex-direction: row;
    gap: 8px;
}

div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;


    padding: 16px;
    gap: 24px
}

section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    margin: 24px;
    background-color: rgb(1, 118, 95);
    border-radius: 16px;

}