@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@1,300&display=swap');

*{
    margin: 0;
    padding: 0 ;
    box-sizing: border-box;
}
body{
    width: 100%;
    height: 100vh;
    /* background: rgb(148 131 200); */
    /* text-transform: capitalize;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; */
    text-transform: capitalize;
}
h1{
    font-family: 'Source Sans Pro', sans-serif; 
}
p{
    font-family: 'Poppins', sans-serif;
}
.bg-blue1{
    background: rgb(148 131 200);
    width: 100%;
    height: 100vh;
    text-align: center;

}
.bg-blue1 h1{
    /* margin-top: 20px; */
    font-size: 4.3rem;
    color: #364389;
}
.bg-blue1 p{
    font-size: 23px;
    color: #364389;
    font-weight: bold;
    margin-top: 12px;
}
.box{
    width: 60%;
    margin: auto;
    margin-bottom: 20px;
    height: fit-content;
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 4px 4px 30px rgba(0, 0, 0, 0.06);
    color: white;
}
#userInput{
    margin: auto;
    margin-top: 29px;
    width: 70%;
}
#restartBtn{
    display: none;
    margin: auto;
    
}
.footer{
   padding: 20px 20px;
    height: 65px;
    width: 100%;
    background: rgb(12, 12, 41);
    color: white;
    text-align: center;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
@media (max-width: 685px ) {
    .box{
        
        width: 80%;
        /* width: 60%; */
        margin: auto;
        margin-bottom: 20px;
        height: fit-content;
        background-color: white;
        border-radius: 15px;
        padding: 20px;
        box-shadow: 4px 4px 30px rgba(0, 0, 0, 0.06);
        color: white;
    }
    input::placeholder {
        font-size: 10px;
    }
    .bg-blue1 h1{
        padding-top: 20px;
        font-size: 25px;
    }
    .bg-blue1 p{
        font-size: 15px;
    }
    .box h2{
        font-size: 20px;
    }
    .bg-blue1{
        background: rgb(148 131 200);
        width: 100%;
        height: 90vh;
        text-align: center;
    
    }
    
}

@media (max-width: 420px ){
    .box h2{
        font-size: 15px;
    }
      .bg-blue1{
        background: rgb(148 131 200);
        width: 100%;
        height: 90vh;
        text-align: center;
    
    }
}
