body{
    background-color: #EDF6FF;
    max-width: 1000px;
    margin: 0 auto;
}

h1, h2, h3, p {
    font-family: 'Poppins', sans-serif;
}

button {
    background-color: #0050ec;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 2em;
    cursor: pointer;
    transition: 0.1s ease;
    border-width: 0;
    box-shadow: 1px 5px 0 0 #0e285d;
  }
  
  button:hover {
    transform: translateY(-4px);
    box-shadow: 1px 9px 0 0 #0e285d;
  }
  
  button:active {
    transform: translateY(4px);
    box-shadow: 0px 0px 0 0 #0e285d;
  }

.navbar{
    display: flex;
    gap: 20px;
    padding-top: 10px;
}

.coolinput {
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    width: 400px;
  }
  
.coolinput label.text {
    font-size: 0.75rem;
    color: #000000;
    font-weight: 700;
    position: relative;
    top: 0.5rem;
    margin: 0 0 0 7px;
    padding: 0 3px;
    background: #EDF6FF;
    width: fit-content;
  }
  
  
.coolinput input[type="text"].input {
    padding: 11px 10px;
    font-size: 0.75rem;
    border: 2px #000000 solid;
    border-radius: 5px;
    background: #EDF6FF;
  }
  
.coolinput input[type="text"].input:focus {
    outline: none;
  }
  
.navbar h1{
    color: #144AB3;
    font-size: 50px;
    max-width: 500px;
}

.inputall{
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.hasil{
    background-color: #144AB3;
    color: #ffffff;
    border-radius: 20px;
    padding: 20px;
    margin: 20px;
}


@media  (max-width: 600px) {
    body{
        display: block;
        max-width: 400px;
    }

    button{
        width: 100%;
    }

    .hasil{
        padding: 20px;
        margin: 20px;
    }
    .inputall{
        flex-direction: column;
        align-items: center;
    }
    .navbar{
        flex-direction: column;
        align-items: center;
    }
}