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

html {
  font-family: "Poppins", sans-serif;
  font-size: 62.5%;
}

body {
  min-height: 100vh;
}

.dark {
  background-color: #0f172a;
}

.section-padding {
  padding: 9.6rem 0;
}

.container {
  max-width: 114rem;
  margin: auto;
}

.content-container {
  padding: 0 2rem;
}

.text-center {
  text-align: center;
}

.text-white {
  color: #fff;
}

.text {
  font-size: 1.8rem;
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.mb-2 {
  margin-bottom: 2rem;
}

a:link {
  color: #fff;
}

.image-upload {
  padding: 10px;
  border: 1px solid lightgray;
  border-radius: 5px;
}

.image-button {
  background-color: #e64980;
  padding: 10px 20px;
  border-radius: 5px;
  color: #fff;
  border: none;
  cursor: pointer;
}

.image-preview-container {
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.image-preview {
  max-width: 100%;
  border-radius: 5px;
}

/*---------- PAGE IMAGES ----------*/
.images {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.images img {
  max-width: 100%;
  border-radius: 5px;
}

/*---------- PAGE IMAGES ----------*/
