@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap");

:root {
  --white: #fff;
  --black: #1c2b2d;
  --blue: #31326f;
  --light-blue: #005490;
  --color-primary: #9d0191;
  --color-sec: #db6400;
  --grey: #eee;
  --dark-grey: #222831;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

body {
  font-family: "Open Sans", sans-serif;
}

p {
  font-size: 1.6rem;
  line-height: 1.5;
}

img {
  width: 100%;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Start here */
.main {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;

}

h2 {
  font-size: 3rem;
  font-weight: 400;
}

.box {
  min-width: 40rem;
  margin: 2rem 0;
}

.range-slider {
  width: 100%;
  height: 9rem;
  border-radius: 5px;
  padding: 3rem 2rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  display: flex;
  justify-content: center;
  align-items: center;

}

.value {
  font-size: 2.5rem;
  color: white;
  background-color: var(--color-primary);
  margin-right: 1rem;
  padding: 1px 1rem;
  border-radius: 3px;
}

.circle-range {
  width: 100%;
  height: 3px;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: var(--color-sec);
  outline: none;
  
}
/* This is for chrome */
.circle-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  background: var(--color-primary);
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
}
/* This is for mozilla */
.circle-range::-moz-slider-thumb {
  -moz-appearance: none;
  background: var(--color-primary);
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
}