@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;900&display=swap');
html, body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    box-sizing: border-box;
    font-family: 'Roboto',  sans-serif;
    font-weight: 100;
    color: white;
}
#outer {
    width: 60%;
    height: 100%;
    margin: auto;
    background-color: #242424;
    box-shadow: 0px 0px 20px 0px black;
}
header {
    background-color: rgb(128,177,211);
    color: #242424;
    box-shadow: 0px 0px 1100px 0px white;
}
header #logo {
    padding: 10px;
    padding-left: 20px;
    text-shadow: 0px 0px 10px white;
}
main {
    margin-top: 0px;
    margin: 30px;
    color: white;
}
main section {
    margin-left: 10px;
}
main section a {
    color: rgb(179,222,105);
}
main section a:hover {
    font-weight: bold;
}
@media only screen and (max-width: 700px) {
    #outer {
        width: 100%;
    }
}