﻿body, html { 
    height: 100%;
}
body {
    margin:0px;
    background-color: #a6d0f5;
}
div { 
    text-align:center;
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    box-sizing:border-box;
}
.author { 
    font-size: 8vw;
    background-color: white;
    padding:2px 2px 0px 2px;
}
.story { 
    background-color: antiquewhite;
    padding: 4px;
    color: #d3970b;
    border-top: 1px solid #d3970b;
    border-bottom: 1px solid #d3970b;
}
.adventure { 
    padding: 0px 2px 4px 2px;
    background-color: white;
}
.story, .adventure, .books  { 
    font-size: 16px;
}

/* nav */
.story a { 
    color: #d3970b;
    text-decoration: none;
}
.story a:hover { 
    color: #e4a81c;
    text-decoration: underline;
}

/* main body holder */
.books { 
    margin: 14px;
    padding: 14px;
    background-color: white;
    border:1px solid #a3a3a3;
    min-height: 60%;
    border-radius: 10px;
}

/* Cover image */
.rebellious { 
    display: block;
}
.rebellious img { 
    max-width: 300px;
}

/* Book desc text */
.girls { 
    white-space: normal;
}
.books a.book { 
    background-color: #13b206;
    color: white;
    text-decoration:none;
    padding: 8px 12px 10px 12px;
    border: 1px solid #0b9700;
    border-radius: 12px;
    margin: 8px 0px 12px 0px;
    font-weight: bold;
    display: inline-block;
}

.books a.book:hover { 
    background-color: #14c606;
}

h1 { 
    font-size: 16px;
    padding-top:0px;
    margin-top: 0px;
}

.adventure-stories { 
    text-align: left;
}

.books a { 
    color: #037CA7;
}

.book-cover { 
    box-shadow: rgba(0,0,0,0.4) 5px 5px 10px;
    margin-right: 20px;
    margin-bottom: 10px;
}

.wolf { 
    margin-bottom: 10px;
}
.wolf:last-child { 
    margin-bottom: 0px;
}

@media screen and (min-width: 600px) {
    .books {
        margin: 4% 10% 4% 10%;
        box-shadow: rgba(90,90,90,2) 10px 10px;
    } 
    body { 
        background-image: url('/images/adventure-bg.jpg');
        background-repeat:no-repeat;
        background-size:cover;
        background-attachment:fixed;
    }
    h1 { 
        font-size: 20px;
    }
    .rebellious img { 
        max-width: 400px;
    }
}
@media screen and (min-width: 920px){
    h1 { 
        font-size: 26px;
    }
    .rebellious, .girls { 
        display: inline-block;
        vertical-align: top;
    }
    .girls { 
        text-align:left;
        padding-left: 4px;
    }
    .wolf { 
        display: flex;
    }
    .author { 
        font-size: 5vw;
        padding: 20px 5% 0px 20px;
    }
    .adventure { 
        margin-top: -5px;
            padding: 0px 2px 1% 14%;
    }
    .story { 
        padding: 6px;
    }
    .story, .adventure, .books  { 
        font-size: 20px;
    }
    .books {

    }

}

@media screen and (min-width: 1120px) {
    .rebellious img { 
        max-width: none;
    }
}