 * {
     margin: 0;
     padding: 0;
     -moz-box-sizing: border-box;
     -ms-box-sizing: border-box;
     -webkit-box-sizing: border-box;
     box-sizing: border-box;
 }

 .btn {
     cursor: pointer;
 }

 .container {
     position: absolute;
     width: 300px;
     height: 250px;
     background: #fff;
     -webkit-touch-callout: none;
     -webkit-user-select: none;
     -khtml-user-select: none;
     -moz-user-select: none;
     -ms-user-select: none;
     user-select: none;
     overflow: hidden;
 }


 .border {
     position: absolute;
     pointer-events: none;
     z-index: 20;
     width: 100%;
     height: 100%;
     top: 0;
     left: 0;
     border: 1px solid #665d5b;
 }

 #exit {
     position: absolute;
     top: 0;
     left: 0;
     cursor: pointer;
     width: 100%;
     height: 100%;
     z-index: 1;
 }

 .main-content {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     display: none;
 }


 .bgContainer {
     position: absolute;
     width: 410px;
     height: 320px;
    top: -65px;
    left: -70px;
 }

 .background {
     position: absolute;
     width: 410px;
     height: 320px;
     top: 0;
     left: 0;
 }

 .car {
     position: absolute;
     z-index: 3;
 }

 .logo {
     position: absolute;
     background-image: url('logo.svg');
     width: 74px;
     height: 30px;
     background-size: contain;
     background-repeat: no-repeat;
     left: 11px;
     bottom: 22px;
 }

  .copy-one, .copy-two, .copy-three {
     font-family: 'Noto Sans', sans-serif;
     font-size: 16px;
     color: white;
     width: 200px;
     height: auto;
     position: absolute;
     top: 9px;
     left: 24px;
     opacity: 0;
     line-height: 1.2;
     letter-spacing: 0.5px;
 }

 .cta-btn {
     position: absolute;
     background: url('cta.svg') no-repeat;
     width: 72px;
     height: 19px;
     right: 11px;
     top: 208px;
 }

 .disclaimer-btn {
     position: absolute;
     bottom: 0;
     left: 1;
     z-index: 10;
     font-size: 5px;
     color: #fff;
     font-family: "Inter", sans-serif;
     opacity: 0;
     letter-spacing: 0.4px;
     width: 72px;
     height: 20px;
 }

 .disclaimer-btn p {
     position: absolute;
     top: 7px;
     left: 10px;
 }

 .disclaimer-btn.active {
     opacity: 0.2;
 }

 .disclaimer-content {
     position: absolute;
     top: 0;
     width: 100%;
     height: 250px;
     background: rgba(0, 0, 0, 0.8);
     z-index: 10;
     display: none;
     color: #fff;
     font-size: 12px;
     font-family: sans-serif;
     padding: 10px 20px 10px 10px;
     letter-spacing: 0.4px;
 }

 .disclaimer-content p:first-child {
     font-size: 12px;
     margin-bottom: 3px;
 }

 .close-btn {
     font-size: 14px;
     position: absolute;
     right: 5px;
     top: 5px;
     cursor: pointer;
     width: 30px;
     height: 30px;
 }

 .close-btn p {
     left: 10px;
     top: 5px;
     position: absolute;
 }

 .disclaimer-content.active {
     display: block;
 }

 .motif {
     width: 270px;
     height: 175px;
     position: absolute;
     top: -15px;
     left: 8px;
 }

 /*  motif animation */

 .triggerAnimate {
     animation: stroke 1s cubic-bezier(0.65, 0, 0.45, 1) forwards alternate;
 }

 @keyframes stroke {
     from {
         stroke-dashoffset: 1000;
     }

     to {
         stroke-dashoffset: 0;
     }
 }