JSFiddle - React, Tailwind, and code Playground

by sperske

HTML

<div class='shape'>
  Never gonna give you up never gonna let you down...
</div>

CSS

body {
  background-color: black;
}
div.shape{
  height: 100px;
  width: 500px;
  color: black;
  background-color: white;
  line-height: 100px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
@media screen and (min-height: 300px) and (min-width: 480px) {
  body {
   background-color: magenta;
  }
  div.shape{
    border-radius: 50%;
    width: 300px;
    height: 300px;
    line-height: 300px;
    overflow: visible;
  }
}