
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@400;500;600;700&display=swap');

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:var(--white-soft);
  color:var(--text-dark);
  overflow-x:hidden;
}

/* HEADINGS */

h1,h2,h3,h4,h5{
  font-family:'Cormorant Garamond',serif;
  font-weight:600;
  letter-spacing:0.5px;
}

/* CONTAINER */

.container{
  width:min(1200px,92%);
  margin:auto;
}

/* LINKS */

a{
  text-decoration:none;
  color:inherit;
}

/* BUTTON RESET */

button{
  border:none;
  cursor:pointer;
  transition:0.3s ease;
}

/* IMAGES */

img{
  max-width:100%;
  display:block;
}

