@font-face{
    font-family: 'MyWebFont';
    src: url('WebFont.eot');
    src: url('WebFont.eot?#iefix') format('embedded-opentype'),
    url('WebFont.woff') format('woff'),
    url('WebFont.ttf') format('truetype'),
    url('WebFont.svg#webfont') format('svg');
}

* {
    margin: 0;
    padding: 0;
}

body {
    background-color: aquamarine;
    font-family: "WebFont", sans-serif;
}