body {
    /* Never get smaller than this */
    background: #000;
    color: orange;
    font-family: Georgia,Corbel,Verdana;
}

@media (min-width:600px) {
    body {
        font-size: 20px;
    }
}

@media (min-width:800px) {
    body {
        font-size: 30px;
    }
}

@media (min-width:1000px) {
    body {
        /* Never get larger than this */
        font-size: 40px;
    }
}

@media (min-width:1600px) {
    body {
        /* Never get larger than this */
        font-size: 50px;
    }
}


#container {
    margin: 0.5em;
}


a {
    color:yellow;
    font-weight:bold;

}

