@font-face {
  font-family: 'Quenda-Medium';
  src: url('../../font/Quenda-Medium.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background-color: var(--background-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden; 
  user-select: none;
  font-family: 'Montserrat';
}

#container {
  width: calc(100% - 40px); 
  height: 80vh; 
  background-color: rgba(224, 224, 224, 0);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#circle {
  background-color: #3498db;
  position: absolute;
  height: 58.75px;
  width: 58.75px;
  background: #8E71EB;
  border-radius: 50%;
  background-color: #8E71EB;
  background-image: linear-gradient(45deg, #8E71EB 20%, #23bdf3 100%);
  border: 1px solid #8E71EB;
  /* box-sizing: border-box; */
  box-shadow: 0px 0px 62px #8E71EB;
  opacity: 75%;
}

.controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px; 
}

.controls button {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

.center {
  text-align: center;
  font-family: 'Quenda-Medium';
  font-size: 1.17em;
    margin-block-start: 1em;
    margin-block-end: 1em;
    max-width: 300px;

}

.small-hr {
  height: 2px; 
  background-color: #757575; 
  border: none; 
  width: 50%; 
  margin: 10px auto; 
}


hr {
  margin: 10px 0;
  border: 0;
  border-top: 2px solid #757575;
}
  
h3{
  color: var(--text-color);
  font-family: 'Montserrat', Courier, monospace !important;
}

.preset {
  background-color: var(--card-line-color);
	border: 1px solid var(--card-hover-border-color);
  padding: 10px;
  display: grid;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  text-align: center;
  display: inline-block;
  cursor: pointer;
  flex: 1;
  color: var(--text-color);
  font-weight: 700;
  font-family: 'Montserrat', Courier, monospace !important;
}

.preset:hover {
	background-color: #6b3ef9;
	border-color: 1px solid #6b3ef9;
	color: #ffffff;
}

#toggleMovement {
  background-color: var(--card-hover-border-color);
  color: var(--text-color);
  position: fixed;
  bottom: 0px;
  margin-bottom: 15px;
}

button {
  color: var(--text-color);
}

option {
  color: black;
}

.preset.active {
  background-color: #6b3ef9;
  color: white;
}