@import url("https://fonts.googleapis.com/css2?family=Poppins&family=Roboto&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --fontFam: "Poppins", sans-serif;
  --color1: #000;
  --color2: #333;
  --color3: #666;
  --color4: #ddd;
  --color5: #fff;
  --color6: rgba(0, 0, 0, 0.4);
  --bgColor: linear-gradient(to right, #99a3a3, #e9e9e9);
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: var(--bgColor);
  font-family: var(--fontFam);
  font-size: 18px;
  letter-spacing: 1px;
  height: 100vh;
}

.container {
  padding: 0 10px;
}

h1 {
  font-size: 34px;
  color: var(--color2);
  padding: 20px 0 40px 0;
}

label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border: 2px solid var(--color2);
  border-radius: 50%;
  margin-right: 1rem;
}

label:hover {
  border: 2px solid var(--color6);
}

label input {
  display: none;
}

label span.ball {
  display: inline-block;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  background-color: var(--color2);
  border-radius: 50%;
  opacity: 0;
  cursor: pointer;
}

label input:checked+span.ball {
  opacity: 1;
}

.optionText {
  font-weight: 600;
  padding-bottom: 10px;
}

.option {
  display: flex;
  flex-direction: row;
  padding-bottom: 12px;
}

.circle,
.circle2 {
  display: inline-block;
  width: 40px;
  height: 40px;
  font-size: 18px;
  text-align: center;
  font-weight: 900;
  border-radius: 50%;
  line-height: 40px;
  margin: 4px;
}

.circle2 {
  position: relative;
}

.btn {
  width: auto;
  font-family: var(--fontFam);
  font-size: 14px;
  letter-spacing: 1px;
  background-color: transparent;
  padding: 6px 10px;
  border: 1px solid var(--color1);
  border-radius: 4px;
  margin-bottom: 60px;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--color6);
  color: var(--color4);
  border: 1px solid var(--color3);
}

.description {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 100px;
  background-color: var(--color4);
  color: var(--color5);
  padding: 12px;
  border: 1px solid var(--color6);
  margin: 24px 0 40px 0;
}

.boxTextBg {
  background-color: var(--color6);
  font-size: 14px;
  padding: 8px 12px;
}

.defaultText {
  color: var(--color3);
  font-size: 14px;
}

.select-title {
  padding-bottom: 18px;
}

.selectRed {
  background-color: red;
}

.selectOrange {
  background-color: orange;
}

.selectYellow {
  background-color: yellow;
}

.selectGreen {
  background-color: green;
}

.selectBlue {
  background-color: blue;
}

.selectIndigo {
  background-color: indigo;
}

.selectViolet {
  background-color: violet;
}

.copy {
  position: fixed;
  bottom: 0;
  text-align: center;
  width: 100%;
  background-image: var(--bgColor);
  color: var(--color2);
  font-size: 12px;
  letter-spacing: 1.2px;
  padding: 12px 0;
}

.copy a {
  color: var(--color2);
  text-decoration: underline;
  text-decoration-color: var(--color2);
  text-underline-offset: 5px;
}

.copy a:hover {
  color: var(--color2);
  text-decoration: none;
}

@media only screen and (max-width: 370px) {

  .copy {
    line-height: 1.5;
  }

  .copy a {
    text-underline-offset: 2px;
  }

  .copy2 {
    display: block;
  }
}