﻿@import url('/Content/reset.css');
@import url('https://fonts.googleapis.com/css?family=Inconsolata|Indie+Flower');
body {
    font-size: 18px;
    font-family: 'Inconsolata', monospace;
}
a {
    text-decoration:none;
    color:#efefef;
}
a:hover {
    color:lightcoral;
}
#content {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
    background-color: #c78747;
    border-radius: 15px;
}
.title {
    font-size:28px;
}
.subtitle {
    font-family: 'Indie Flower', cursive;
}
.header {
    position:relative;
    margin:0 auto 15px auto;
    width:236px;
}
.copyright {
    position:absolute;
    bottom:2px;
    color:white;
    right:5px;
    font-size:10px;
    font-style:italic;
}
@media only screen and (max-width:576px) {
    body {
        background-color: #c78747;
    }
    #content {
        padding: 10px;
    }
    .subtitle {
        font-size: 28px;
        margin-bottom: 5px;
    }
    .address {
        margin-top: 5px;
    }
}
@media only screen and (min-width:576px) {
    body {
        background-color: white;
        background-image: url('https://bestelling.dubbeldoel.be/Content/images/bck.jpg');
        background-repeat: no-repeat;
        background-size: cover;
    }
    #content {
        margin-top:10px;
        padding: 20px;
    }
    .subtitle {
        font-size: 45px;
        margin-bottom: 15px;
    }
    .address {
        margin-top: 15px;
    }
}