@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

:root {
  --product-img-size: 300px;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  font-family: Inter; 
  display: flex;
  flex-direction: column;
}




.card {
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out; 
  display: flex; 
  flex-direction: column; 
  height: 100%; 
  border: 1px solid #dee2e6; 
  border-radius: 0.25rem; 
  overflow: hidden; 

}

.card:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25); 
  transform: scale(1.02); 
}

.photo-frame {
  display: flex;
  border-radius: 2%;
  height: 350px;
}

.product-photo {
  max-width: var(--product-img-size);
  max-height: var(--product-img-size);
  margin: auto;
  width: auto;
  height: auto;
  padding: 10px;
}

.logo-header {
  height: 100px;
  width: auto;
  margin: auto;
  display: block;
}

.main {
  h1 {
    font-size: 50px;
    font-weight: bold;
    margin-left: 20%;
    margin-right: 20%;
    margin-bottom: auto;
  }
  p {
    font-size: 18px;
    font-weight: 400;
    margin-left: 20%;
    margin-right: 20%;
    margin-bottom: auto;
  }

}

