@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@400;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: white;
    font-family: 'Hanken Grotesk', sans-serif;
}
h1,h2{
    color: white;
    font-weight: 500;
}
h1{
    padding-top: 30px;
    font-size: 20px;
}
p{
    font-size: 18px;
}
h3{
    color: hsl(0, 0%, 100%);
    font-weight: 800;
    font-size: 25px;
    padding-bottom: 10px;
}

#first,h1{
    color: hsl(241, 100%, 89%);
}

.circle{
    width: 150px;
    height: 150px;
background: linear-gradient(hsla(256, 72%, 46%, 1)75%,hsla(241, 72%, 46%, 0));
  border-radius: 50%;
  margin: auto;
  text-align: center;
 padding: 30px;
}

h2{
    font-weight: 700;
    font-size: 50px;
}
#main-box{
    width: 50vw;
    height: 60vh;
   
    margin: 100px auto;
    display: flex;
    border-radius: 15px;
background: hsl(0, 0%, 100%);
box-shadow:  17px 17px 38px #efefef,
             -17px -17px 38px #ffffff;
}

#first{
    width: 50%;
    height: 100%;
    background: linear-gradient(hsl(252, 100%, 67%),hsl(241, 81%, 54%));
    border-radius: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    padding: 15px;
}



#container{
    padding-top: 20px;
    height: 70%;
    display: flex;
    flex-direction: column;
  justify-content: center;
    align-items: center;

}
h4{
    padding-top: 20px;
    padding-left: 10px;
    color: black;
    text-align: left;

}

.title{
    display: flex;
    gap: 5px;
}

.smallbox{
    width: 260px;
    height: 40px;
    margin: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 70px;
    align-items: center;
   padding: 10px;
   border-radius: 5px;
    
}

.yellowbox{
    background-color:  hsla(39, 100%, 56%,10%);
}

.yellow{
    color:  hsl(39, 100%, 56%);
}


.redbox{
    background-color:  hsla(0, 100%, 67%,10%);
}

.red{
    color:hsl(0, 100%, 67%);
}

.greenbox{
    background-color:  hsla(166, 100%, 37%,10%);
}

.green{
    color:  hsl(166, 100%, 37%);
}

.purplebox{
    background-color:  hsla(234, 85%, 45%,10%);
}

.purple{
    color:  hsl(234, 85%, 45%);
}

button{
    width: 260px;
    height: 30px;
    border-radius: 15px;
    margin: auto;
  padding: 15px;
   text-align: center;
   padding-bottom: 25px;
 background: linear-gradient(hsl(252, 100%, 67%),hsl(241, 81%, 54%));
 color: white;
 border: none;
 margin-left: 10px;
 margin-top: 10px;
}


@media screen and (max-width: 767px) {
    h1 {
      font-size: 16px;
      padding-top: 20px;
      padding-bottom: 10px;
    }
    h2 {
      font-size: 30px;
    }
    p {
      font-size: 16px;
    }
    #main-box {
        width: 90vw;
        height: auto;
        margin: 50px auto;
        flex-direction: column;
      }
      #first {
        width: 100%;
        height: auto;
        padding: 10px;
        border-top-right-radius: 0px;
        border-top-left-radius: 0px;
      }
      #container {
        height: auto;
      }
      .smallbox {
        width: 100%;
        margin: 10px 0;
        gap: 20px;
        padding: 5px;
      }
      button {
        width: 100%;
        height: 40px;
        margin: 10px 0;
        padding: 5px;
        font-size: 16px;
      }
}














