/* My fonts */
@font-face {
    font-family: "DancingScript";
    src: url("./font/DancingScript-VariableFont_wght.ttf");
}
@font-face {
    font-family: "AbrilFatface";
    src: url("./font/AbrilFatface-Regular.ttf");
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 2rem;
}

/* General CSS */
body {
    margin: 0;
    padding: 0;
    font-family: 'Tahoma', Arial, sans-serif;
    background-color: #d7c6b3;
}

#header {
    display: grid;
    grid-template-columns: 6rem max-content auto max-content;
    padding: 1rem;
}

.title {
    font-family: 'DancingScript', Arial, sans-serif;
    font-size: 2rem;
}

#logo {
    width: 4rem;
    border-radius: 4rem;
    border: 1px solid black;
    margin: .5rem;
}

nav > ul {
    list-style: none;
    display: flex;
}

nav > ul > li {
    padding: 1rem;
}

nav a {
    text-decoration: none;
    color: black !important;
}

nav > ul > li:hover {
    background-color: #eae1d7;
}

nav > ul > li.selected {
    font-weight: bold;
    border-bottom: 1px solid black;
}

#header-image {
    font-family: 'AbrilFatface', Arial, sans-serif;
    position: relative;
    max-height: 70vh;
    overflow: hidden;
}

div > img {
    width: 100%;
}

#header-image > h2 {
    position: absolute;
    bottom: 10vh;
    left: 10vw;
    font-size: 4rem;
    font-weight: 800;
    color: #d7c6b3;
    text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000; 
}

#header-line {
    border-bottom: 1px solid black;
}

.adress {
    margin: 1rem;
    text-align: center;
}

.one-col-grid{
    margin: 2rem;
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    justify-items: center;
}

.two-col-grid{
    margin: 2rem;
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr 1fr;
}

img.puppy{
    margin: 1rem;
    width: 15rem;
    box-shadow: 0 8px 17px 2px rgba(0,0,0,0.14), 0 3px 14px 2px rgba(0,0,0,0.12), 0 5px 5px -3px rgba(0,0,0,0.2);
}

span.puppy-name {
    margin-left: 1.5rem;
}

.info-table, .info-table tr, .info-table td {
    border-collapse: collapse;
    border: 1px solid black;
}

.info-table, td {
    padding: .4rem;
}