body{
    background-color: rgb(238, 164, 164);
    height:90vh;
    width:100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

#loancal {
    width: 400px;
    height: 375px;
    background-color:#000;
    color: #fff;
    margin-top: 135px;
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.button {
    border: none;
    color: rgb(29, 14, 14);
    padding: 15px 23px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 89px;
    cursor: pointer;
    border-radius: 0.1rem
  }

#months, #amount, #interest_rate{
    width: 175px;
    height: 20px;

}

#interest_rate {
    margin-left: 2px;
}

h1 {
    font-size:40px;
}

@media(max-width:383px)
{
    body{
        width:fit-content;
    }
    #loancal{
        margin-right: 8px;
    }
}