* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:"myFont";
}

body {
  background-color: #f2f2fd;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

/* Container */
.results-container {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  max-width: 550px;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Left Side - Results Section */
.results {
  background: linear-gradient(to bottom, #4b68ff, #3541b0);
  color: white;
  text-align: center;
  padding: 30px;
}

.results h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #d0d4ff;
}

.circle {
  background: linear-gradient(to bottom, #4b68ff, #3541b0);
  width: 120px;
  height: 120px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.circle span {
  font-size: 2.5rem;
  font-weight: bold;
}

.results p {
  margin-top: 15px;
  font-size: 1rem;
}

/* Right Side - Summary Section */
.summary {
  padding: 20px;
}

.summary h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
  color: #333;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  margin: 10px 0;
  border-radius: 8px;
  font-weight: bold;
}

.summary-item span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.summary-item.reaction {
  background-color: #ffe8e8;
  color: #ff5757;
}

.summary-item.memory {
  background-color: #fff5e5;
  color: #ffb42e;
}

.summary-item.verbal {
  background-color: #eaffea;
  color: #56b25f;
}

.summary-item.visual {
  background-color: #e5f6ff;
  color: #3f8fb5;
}

/* Button */
.continue-btn {
  display: block;
  text-align: center;
  width: 100%;
  padding: 10px;
  background-color: #3d3d40;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.continue-btn:hover {
  background-color: #3541b0;
}

/* Responsive Design */
@media (min-width: 768px) {
  .results-container {
    flex-direction: row;
  }

  .results {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 20px;
    flex: 1;
  }

  .summary {
    flex: 1;
    padding: 30px;
  }
}

@font-face {
  font-family: "myFont";
  src: url('./fonts/HankenGrotesk-VariableFont_wght.ttf');
}
