@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
	margin: 0;
	padding: 0;
}

*,
*::before,
*::after {
	box-sizing: inherhit;
}

html {	
	box-sizing: border-box;
	font-size: 62.5% /* 1rem = 10px, 10px / 16px (= browser default) = 62.5% */ 
}

/* Optional: This varies based on project design */
body {
	font-family: 'Poppins', 'sans-serif';
	font-weight: 400;
	line-height: 1.6;
}

.calculator-container {
    display: flex;
    flex-direction: column;
    width: 50%;
    margin: 50px auto;
    border-radius: 7px;
    padding: 30px 15px;
    text-align: center;
}

.paragraph-label {
    font-size: 1.6rem;
}

.resources-btn {
    color: #ffffff;
    margin-top: 15px;;
    padding: 10px 15px;
    background-color: #B3922F;
    border: 1px solid #B3922F;
    font-size: 1.4rem;
    text-decoration: none;
}

@media only screen and (max-width: 600px) {
   .calculator-container {
    width: 90%;
   }
  }