 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: "Montserrat", serif;
     font-weight: weight;
     font-style: normal;
     font-size: small;
 }


 :root {
     --main: #BC9D62;
     --main-hover: #d0b98d;
     --H2-text-color: #6A6C54;
     --background: #F7F0E6;
     --border-radius: 5px;
     --card-background: #969044;
     --card-background2: #3A3C16;
     --link-color: #DBDBDF;
     --menu-background: #f9f6f6;
 }

 main {
     padding: 40px 100px;
 }

 h1 {
     display: grid;
     align-items: center;
     justify-items: center;
     color: var(--main);
     height: 60px;
     font-size: x-large;
     margin: 30px 0;
 }

 .products {
     max-width: 90%;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 40px;
 }

 .soap {
     display: flex;
     position: relative;
     flex-direction: column;
     text-align: center;
     background: var(--menu-background);
     gap: 10px;
     border-radius: var(--border-radius);
     box-shadow: .5px .5px 3px black;
     padding: 10px;
 }

 .image {
     position: relative;
 }

 .soap img {
     max-width: 100%;
 }

 .container {
     display: flex;
     position: relative;
 }

 #soapname {
     color: var(--H2-text-color);
     font-size: large;
     justify-content: center;
 }

 #ar {
     color: var(--main);
     font-size: medium;
   font-weight: bold;
     justify-content: center;
     margin: 5px 0;
 }

 .content {
     display: flex;
     flex-direction: column;
     position: relative;
     justify-items: center;
     justify-content: end;
     text-align: justify;
     align-items: end;
     padding: 0 10px;
 }

 h31 {
     
     display: grid;
     align-items: center;
     justify-items: center;
     color: var(--main);
     height: 60px;
     font-size: x-large;
     margin: 30px 0;
     
     margin-bottom: 10px;
 }

 .feliratkozas,
 .soap .button {
     background: var(--background);
     padding: 3px;
     border-radius: 10px;
     text-decoration: none;
     color: var(--link-color);
     text-shadow: 1px 1px 2px #581903;
     transition: background 0.5s;
     border: none;
 }

 .soap .button:hover {
     background: var(--link-hover);
 }