body {
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
    background: #f7faf7;

    display: flex;
    flex-direction: column;

    background-image: radial-gradient( circle farthest-corner at 10% 20%,  rgba(248,180,244,1) 0%, rgba(169,219,237,1) 90% ); 
}

header {
    background-color: rgba(255, 255, 255, 0.3);
    height: 10vh;

    display: flex;
    justify-content: center;
    align-items: center;
}

main {
    display: flex;
    justify-content: left;
    text-align: left;

    flex-direction: column;
    padding: 1em;
}

h2 {
    font-size: 2em;
}

.mainSection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 1em;
}

.dogCard {
    background-color: rgba(255, 255, 255, 0.3);

    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2em;
    padding: 0.5em 1em; 
}

.dogCard > p {
    font-size: x-large;
}

div.dogIcon {
    width: 175px;
    height: 175px;
    border-radius: 10px;
    background-image: url('dogs.webp');
}

footer {
    background-color: rgba(255, 255, 255, 0.3);
    height: 5vh;

    display: flex;
    align-items: center;
    justify-content: center;
}
