
 * {
     box-sizing: border-box;
 }

 body {
     margin: 0;
     font-family: "Cabin Sketch", sans-serif;
     background-color: #eae9e5;
     text-align: center;
 }

 .container {
     max-width: fit-content;
     margin: 50px auto;
     display: flex;
     flex-direction: column;
 }

 .score-board {
     width: 575px;
     height: 420px;
     display: flex;
     justify-content: space-around;
     align-items: center;
     padding: 20px;
     margin: 20px 0;
     position: relative;
 }

 .score-container::before,
 .score-container::after,
 .score-board::before,
 .score-board::after {
     content: '';
     position: absolute;
     background: transparent;
     pointer-events: none;
 }

 .score-board::before {
     top: -3px;
     left: -4px;
     right: -2px;
     bottom: -3px;
     border: 3px solid #5e74a6;
     border-radius: 12px;
     transform: rotate(-1.2deg) skew(-0.5deg);
 }

 .score-board::after {
     top: -2px;
     left: -2px;
     right: -4px;
     bottom: -2px;
     border: 2px solid #5e74a6;
     border-radius: 8px;
     transform: rotate(0.8deg) skew(0.3deg);
     opacity: 0.8;
 }

 h3 {
     color: #5e74a6;
     font-weight: bold;
     font-size: 48px;
     margin: 0px;
 }

 .score-container {
     margin-top: 20px;
     width: 155px;
     height: 120px;
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
 }


 .score-container::before {
     top: -3px;
     left: -4px;
     right: -2px;
     bottom: -3px;
     border: 3px solid #5e74a6;
     border-radius: 30px;
     transform: rotate(-1.2deg) skew(-0.5deg);
 }

 .score-container::after {
     top: -2px;
     left: -2px;
     right: -4px;
     bottom: -2px;
     border: 2px solid #5e74a6;
     border-radius: 22px;
     transform: rotate(0.8deg) skew(0.3deg);
     opacity: 0.8;
 }


 .score {
     color: #5e74a6;
     font-size: 90px;
     font-weight: bold;
     line-height: 1;
 }

 .score-btn-container {
     margin-top: 30px;
     display: flex;
     justify-content: space-around;
     width: 155px;
 }

 button {
     font-size: 28px;
     color: #9AABD8;
     border: 0;
     border-radius: 6px;
     width: 45px;
     height: 45px;
     background-color: transparent;
     font-family: inherit;
     cursor: pointer;
     transition: all 0.2s ease;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 button:hover {
     color: #5e74a6;
     box-shadow: 0 4px 8px rgba(58, 98, 143, 0.2);
 }

 .reset-button {
     display: flex;
     justify-content: center;
     margin-top: 20px;
 }

 #reset {
     width: 150px;
     height: 45px;
     font-size: 16px;
 }




 /* github link */
 .github-button {
     position: absolute;
     top: 1rem;
     right: 1rem;
     width: 24px;
     height: 24px;
     color: #fff;
 }

 .github-button svg {
     fill: currentColor;
     width: 100%;
     height: 100%;
     transition: color 0.3s ease;
 }

 .github-button:hover {
     color: #0366d6;
 }