JSFiddle - React, Tailwind, and code Playground

HTML

<! doctype html>
<html>
<head>
    <title>My page</title>
    <meta charset="utf-8">
    <link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
    <div class="snezinke"></div>
</body>
</html>

CSS

body{
    background: -moz-linear-gradient(top, #1e5799 0%, #2989d8 50%, #7db9e8 100%); /* FF3.6+ */
}

.snezinke{
    background: radial-gradient(circle, white 10%, transparent 10%),
    radial-gradient(circle, white 10%, blue 10%) 50px 50px;
    background-size:100px 100px;
}