/* stylesheet for TGS webpage. Stored under HTML/tgswork/tgs.css */

@import url(https://fonts.googleapis.com/css?family=Poppins|Noticia+Text:400,700);

@media all and (max-width:640px) {
    body{
        font-size: 12px;
    }
    ul.nested-list {
        padding-left: 0;
    }
}

html {
    background-color: lightgray;
    font-size: 16px;
    color: #111;
    font-family: 'Poppins', sans-serif;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    margin: 0;
}
.container {
    max-width: 960px;
    background-color: #d6dce8;
    margin: 0 auto;
}
img.logo {
    width: 100%;
    margin: 0 auto;
}
section {
    background-color: #eee;
    width: 90%;
    border: 1.5rem solid #7b8db1;
    border-radius: 1.5rem;
    margin: 2.5rem auto;
    padding: 1.5rem;
}
h2, h4 {
    font-family: 'Noticia Text', serif;
}
ul.nested-list li {
    list-style-type: none;
}
a {
    text-decoration: none;
    color: #7b8db1;
}
a:hover {
    text-decoration: underline;
    color: #aaa;
}
footer {
    padding: 1rem;
}
footer>p {
    max-width: 40%;
    margin: 0 auto;
}
