/*
CSS from W3Schools:
1. ".hover" Selector
2. "border-radius" Property
3. "filter" Property
*/
body {
    background:url("Style_Images/Gray_Grainy_Texture.jfif") scroll;
    font-family: 'Roboto Slab', serif;
}
h1 {
    background:url("Style_Images/Dark_Gray_Grainy_Texture.jfif") scroll;
    color:rgb(200, 200, 200);
    font-size:50px;
    padding:0px 15px;
}
h2 {
    background:url("Style_Images/Grayish_Blue_Drywall_Texture.jfif") scroll;
    color:rgb(50, 50, 50);
    font-size:35px;
}
p {
    background:url("Style_Images/Dark_Gray_Drywall_Texture.jpg") scroll;
    color:rgb(250, 250, 250);
    font-size:20px;
    font-weight:bold;
}
table {
    margin:10px;
}
th {
    font-size:30px;
}
td ol {
    margin:15px;
}
table, th, td {
    border:2px double rgb(50, 50, 50);
}
/*"border-radius" Property*/
img, table, th, td, .next_page{
    border-radius:15px;
}
img {
    background:url("Style_Images/Light_Gray_Drywall_Texture.jpg") scroll;
    border:2px solid rgb(75, 75, 75);
    width:250px;
}
ol {
    font-size:20px;
    font-weight:bold;
}
ul {
    font-size:18px;
    font-weight:bold;
    list-style-type:square;
}
iframe {
    height:500px;
    width:500px;
}
a {
    text-decoration:none;
}
/*
"hover" Selector
"filter" Property
*/
a:hover {
    filter:drop-shadow(5px 5px 10px black);
}
.background_table {
    background:url("Style_Images/White_Drywall_Texture.webp") scroll;
}
.content_table {
    background-color:rgb(150, 150, 150);
    border:5px solid rgb(50, 50, 50);
}
.more_info {
    background-color:rgb(150, 150, 150);
    color:rgb(200, 200, 200);
    font-size:10px;
}
.teams {
    background:url("Style_Images/White_Detailed_Drywall_Texture.webp") scroll;
    color:#333333;
    font-size:35px;
    font-weight:bold;
    text-align:center;
}
.statistics {
    background:url("Style_Images/Gray_Old_Drywall_Texture.jpg") scroll;
}
.source_margin {
    margin-left:20%;
}
.title_source {
    background:none;
    color:rgb(50, 50, 50);
    font-style:italic;
    font-weight:bold;
}
.next_page {
    background-color:rgba(100, 100, 100, 50%);
    color:rgb(50, 50, 50);
    font-size:15px;
    font-style:italic;
    font-weight:bold;
}
.background-cover {
    background-color:rgb(100, 100, 100);
}
.content_background {
    background:url("Style_Images/Dark_Sandy_Grainy_Texture.jpg") scroll;
}
.source {
    color:rgb(75, 75, 75);
    font-style:italic;
    font-weight:bold;
}
a .source:hover {
    background:rgb(150, 150, 150);
}