@charset "utf-8";
/* CSS Document */

/* This css resets defaults, add or remove if needed */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
<head>
  <meta charset="UTF-8">
  <title>C.O.Persson – Eating with style</title>

  <style>
    .gold-calculator {
      background-color: #fffef6;
      padding: 2rem;
      border: 1px solid #ccc;
      max-width: 600px;
      margin: auto;
      border-radius: 8px;
      font-family: 'Merriweather', serif;
    }

    .gold-calculator h2 {
      text-align: center;
      color: #6a4f34;
    }

    .gold-calculator input,
    .gold-calculator select,
    .gold-calculator button {
      width: 100%;
      margin-top: 0.5rem;
      padding: 0.7rem;
      font-size: 1rem;
    }

    .gold-calculator button {
      background-color: #d4af37;
      color: white;
      border: none;
      border-radius: 4px;
      margin-top: 1rem;
      cursor: pointer;
    }

    #result {
      margin-top: 1rem;
      font-weight: bold;
      text-align: center;
    }
  </style>
</head>
