html {
    background: url("../images/printbg.webp") no-repeat;
    background-size: cover;
}

body {
    font-family: 'Righteous';
    width: 800px;
    background-color: rgb(184, 218, 237);
    margin: 0 auto;
    padding: 0 10px;
    height: 1000px;
}

/* Formatting for Questionairre*/
.twocolumn {
    display : grid;
    column-gap: 10px;
    row-gap: 10px;
    border: 10px;
    font-size: 14px;
    grid-template-columns: auto auto;
}

h1 {
    font-family: 'Righteous';
    text-align: center;
    font-size : 35;
}

button {
    font-family: 'Righteous';
    background-color: rgb(215, 235, 248);
    width: 10em;
    margin: 30px 10px 10px 10px;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    row-gap: 10px;
}

.twocolumn {
    display: grid;
    font-size: 14px;
    grid-template-columns: auto auto;
}

label {
    font-size: 16px;
}

select {
    font-family: 'Righteous';
    width: 25em;
}
/*Questionairre Ends*/

hr {
    border: 2px solid black;
    background-color: black;
}

/* Formatting for Suggested Breed */
.suggested {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 0;
    margin-bottom: 0;
    line-height: 10%
}

h2 {
    padding: 10px, 0;
    grid-column: 1/3;
    grid-row: 1;
    font-size: 28px;
}

img {
    width: 200px;
    height: 200px;
    grid-column: 1;
    grid-row: 2 / 10;
}

h3 {
    grid-column: 2;
    grid-row: 2 / 3;
    font-size: 23px;
}

h4 {
    font-weight: normal;
    font-style: italic;
    grid-column: 2;
    grid-row: 3 / 4;
    font-size: 16px;
}

.desc {
    grid-column: 2;
    grid-row: 4;
    word-break: break-all;
    line-height: 16px;
    font-size: 14px;
    width: 20em;
}