.btn {
  display: inline-block;
  background-color: #3c8067;
  width: 100%;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 1rem;
  margin-top: 2rem; }
  .btn:hover {
    cursor: pointer;
    background-color: #1c232b; }

* {
  margin: 0;
  padding: 0;
  box-sizing: 0; }

body {
  background-color: #f2ebe3;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh; }

.container {
  width: 700px;
  background-color: white;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-radius: 10px; }

h1 {
  font-size: 2.5rem;
  font-family: 'Fraunces', serif;
  color: #1c232b;
  padding: 0.5rem; }

h1.price {
  display: inline-block;
  color: #3c8067; }

h3 {
  font-family: 'Montserrat', sans-serif;
  color: #6c7289;
  font-weight: 500;
  padding: 0.5rem;
  display: inline-block; }

h3.price {
  text-decoration: line-through; }

p {
  font-family: 'Montserrat',sans-serif;
  font-size: 14px;
  color: #6c7289;
  padding: 0.5rem;
  line-height: 2;
  font-weight: 500; }

img {
  width: 100%;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px; }

img.icon {
  width: 14px;
  height: 14px;
  margin-right: 5px; }

.description {
  padding: 1.5rem; }

@media (max-width: 500px) {
  .container {
    grid-template-columns: 1fr; }
  img {
    height: 50vh;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0; } }
