
body {
    /* https://coolors.co/generate and click export -> scss to get the colors to copy and paste below*/
    /* --color1: hsla(349, 69%, 76%, 1);
    --color2: hsla(207, 67%, 44%, 1);
    --color3: hsla(200, 61%, 56%, 1);
    --color4: hsla(187, 41%, 94%, 1);
    --color5: hsla(170, 28%, 95%, 1); */

    /* --color1: hsla(45, 86%, 83%, 1);
    --color2: hsla(135, 65%, 98%, 1);
    --color3: hsla(315, 37%, 86%, 1);
    --color4: hsla(45, 73%, 98%, 1);
    --color5: hsla(224, 40%, 79%, 1); */
    
    --header-height: 80px;
    --shadow: 0px 10px 20px -12px rgba(0,0,0,0.45);
    --gutter: 30px;
    --footer-height: 25px;
    
    font-family: 'Titillium Web', sans-serif;
    background-image: url('../assets/bg.png');
    background-size: 600px;
    display: grid;
    grid-template-columns: 200px 1fr;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin-bottom: calc(var(--footer-height));
}

section {
    background-color: white;
    height: 100%;
    max-width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: var(--gutter);
    border: solid 2px var(--color1);
}

a {
    text-decoration: none;
    color: black
}

header {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background-color: orange;
    height: var(--header-height);
    box-shadow: var(--shadow);
    height: 100%;
    width: 150px;
    top: 0;
}

header a {
    font-weight: 900;
    color: black;
    margin-top: 20px;
    font-size: 1.5rem;
}

h2 {
    font-size: 1.8rem;
    font-weight: bold;
}

.gutter-right {
    margin-right: 20px;
}

p {
    margin: 0px
}

#dog-list-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 50px;
}

.dog-card {
    font-size: 1.5rem;
    padding: 10px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    border: solid 1px black;
    width: 200px;
    height: 200px;
}

.dog-card img {
    width: 90%;
    border-radius: 20px;
}

.dog-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 600px;
}

.dog-detail .name {
    font-size: 2rem;
}

.dog-detail .age-and-breed {
    height: 50px;
    width: 100%;
    font-size: 1.5rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.dog-detail img {
    margin: 40px;
    width: 80%; 
}


.dog-detail .description {
    font-size: 1.2rem;
    margin: 20px;
    padding: 20px;
}