html{
    font-family: Helvetica, Arial, sans-serif;
}

body{
    background-image: url("media/brick-tile.jpg");
}

#MainContent{
    width: 100%;
    margin: auto;
    background-color: white;
    padding: 10px 20px 20px 20px;
    box-shadow: 10px 10px rgba(0, 0, 0, .5);
    box-sizing: border-box;
}

@media (min-width: 1000px) {
    #MainContent {
        width: 1000px;
    }
}


h1{
    text-align: center;
    background-image: url("media/rainbow.png");
    background-repeat: no-repeat;
    background-size: 600px;
    background-position: center;
    color: rgb(219, 219, 219);
    text-shadow: 2px 2px rgb(0, 0, 0);
}

p{
    text-indent: 3em;
}

p::first-letter{
    font-style: italic;
    font-size: large;
}

.siren{
    margin: 0 10px 0 10px;
}

table{
    border-collapse: collapse;
}

th, td{
    border: 2px dotted navy;
    padding: 4px;
}

.table{
    width: 100%;
}

@media (min-width: 800px){
    .table{
        width: 500px;
    }
}