@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.box{
    background:#ffffff ; 
    width: 650px;
    height: 420px;
    display: flex;
    border-radius: 20px;
    box-shadow: 0px 0px 0px 4px inset whitesmoke;
 
  
}

/* 1st Column*/
.column {
    display: flex;
    float: left;
    width: 50%;
    padding: 3px;
   height: auto;
   flex-direction: column;
   align-items: center;
   border-radius: 20px;
   background: linear-gradient(hsl(252, 100%, 67%), hsl(241, 81%, 54%) );
}
    h3{
    margin-top: 30px;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 18px;
    color:hsl(241, 100%, 89%);
    font-weight: 800px;
    }

    .marks{
    width: 180px;
    height: 180px;
    background:linear-gradient(hsla(256, 72%, 46%, 1),hsla(241, 72%, 46%, 0)) ;
    clip-path: circle(42%);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -14px;
    }

    .numbers{
    font-size: 50px;
    margin-top: 52px;
    font-family: "Hanken Grotesk", sans-serif;
    color:  hsl(0, 0%, 100%);
    font-weight: 200px;
    font-weight:800 ;
    }

    h4{
    margin-top: -0.3em;
    color: hsl(241, 100%, 89%);
    font-family: 700;
    }

    h1{
    color:  hsl(0, 0%, 100%);
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 500;
    margin-top: -8px;
    }

    .text2{
    width: 245px;
    height: 90px;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 16px;
    color:hsl(241, 100%, 89%) ;
    font-weight: 500;
    margin-top: 10px;
}

/* 2nd COlumn */
.column1 {
    display: flex;
    float: left;
    width: 50%;
    padding-left: 30px;
    height: auto;
    flex-direction: column;
   
    }

    label{
    font-size: 21px;
    font-family:  "Hanken Grotesk", sans-serif;
    color: hsl(224, 30%, 27%);
    font-weight: 800;
    padding-top: 30px;
    }

    #box1{
    width: 260px;
    height: 45px;
    background-color: hsla(0, 100%, 67%, 0.1);
    display: flex;
    flex-direction: row;
    margin-top: 20px;
    border-radius: 10px;
    padding: 13px 20px;
    }
   .score{
        display: inline-flex;
        margin-left: auto;
    }
    #box2{
    width: 260px;
    height: 45px;
    background-color: hsla(39, 100%, 56%, 0.1);
    margin-top: 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    padding: 13px 20px;
    
    }

    #box3{
    width: 260px;
    height: 45px;
    background-color: hsla(166, 100%, 37%, 0.1);
    margin-top: 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    padding: 13px 20px;
    }

    #box4{
    width: 260px;
    height: 45px;
    background-color:hsla(234, 85%, 45%, 0.1); 
    border-radius: 10px;
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    padding: 13px 20px;
    }

    #text{
        padding-left: 10px;
        font-family:"Hanken Grotesk", sans-serif;
        font-size: 16px;
        font-weight: 700;
    }
    p{
        padding-right: 8px;
        font-family:"Hanken Grotesk", sans-serif;
        color: hsl(224, 30%, 27%);
        font-weight: 700;
        font-size: 15px;
    }
    span{
        color: hsla(224, 30%, 27%, 0.6);
        font-family:"Hanken Grotesk", sans-serif;
        font-weight: 500;
    }
    .button{
    margin-top: 40px;
    }

    button{
    font-size: 15px;
    background-color: hsl(224, 30%, 27%);
    color: hsl(0, 0%, 100%);
    border: none;
    padding: 17px 100px 17px;
    border-radius: 30px;
    font-family:  "Hanken Grotesk", sans-serif;
    font-weight: 700;
    }

    button:hover{
    cursor: pointer;
    background-color:hsl(241, 81%, 54%);
    }

    @media screen and (max-width:376px)  {
        body{
            overflow-x: hidden !important;

        }
        .box{
        display: grid;
           width: 370px;
           height: 830px;
           margin: 0;
           padding: 0;
        
        }
        .column {
            width: 365px;
           
            border-radius: 36px;
            margin-top: -20px;
            overflow-y: hidden !important;
          
            
        }
        .column1{
            margin: 4px;
            width: 99%;
            padding-left: 20px;
        }

        .button{
         margin-top: 30px;
         }
         #box1, #box2 , #box3, #box4{
            width: 320px;
        }
        button{
            padding: 17px 130px 17px;
        }

        @media screen  and (min-width:1400px){
            .box{
                zoom: 130%;
            }
            
        }

       
    }