@import url("https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap");

*{
    margin: 0;
    padding: 0;
}
.bg-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
}
.calc-body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    place-items: center;
    background-image: linear-gradient(
        to top left,
        rgb(249, 180, 255),
        rgb(223, 223, 255),
        rgb(255, 193, 202)
    
    );
    padding: 18px;
    border-radius: 20px;

}
#tip{
    color: rgb(255, 113, 253);
}
.heading{
    color: red;
    font-size: 25px;
    margin: 20px 0px 20px 0px;
}
.button{
    font-family: "Bree Serif";
    margin: 20px 0px;
    width: 40%;
}
#result{
    border: 3px dashed rgb(3, 205, 255);
    width: 80%;
    padding: 1rem;
    border-radius: 20px;
    color: rgb(70, 138, 255);
    font-weight: bold;

}
.input{
    width: 90%;
    margin: 20px 0px;
}
@media screen and (max-width:769px) {
    .calc-body{
        width: 80vw;
        min-height: 80vh;
    }
}