I have recently created a website (http://koulick-project.surge.sh/) as a project, but I am facing challenges in making it fully responsive. I have been able to make the headings and text responsive, however, I am struggling to make the circles for the clock responsive. Here is a snippet of my HTML file:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="author" content="Pragmatic Mates s.r.o. - http://pragmaticmates.com">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="http://fonts.googleapis.com/css?family=Raleway:400,700" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="demo/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="demo/css/coming_soon.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha512-SfTiTlX6kk+qitfevl/7LibUOeJWlt9rbyDn92a1DqWOw9vWG2MFoays0sgObmWazO5BQPiFucnnEAjpAB+/Sw==" crossorigin="anonymous" />
<title>JWOC Coming Soon</title>
</head>
<body>
<!-- Your HTML content goes here -->
</body>
</html>
And here is a snippet from my CSS file:
/* Your CSS styles go here */
If anyone has any insights or solutions on how I can make the circles for the clock responsive, please help me out. Thank you!