body {
  font-family: 'Arial', sans-serif;
  background-color: lightpink;
  color: #333;
  margin: 0;
  padding: 0;
  text-align: center;
  justify-content: center;
  align-items: center;
}

#splash-screen {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #ffe6f2;
}

#splash-screen img {
  max-width: 20%;
  height: auto;
}

#main-content {
  padding: 20px;
}


.frames-container {
  display: flex;
  overflow-x: auto;
  padding: 50px 0;
  gap: 15px;
}

.frame {
  background-color: #ffe6f2;
  position: relative;
  width: 300px;
  height: auto;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 4px 4px 8px rgba(0.2,0.2,0.2,0.2);
  padding: 20px;
}

.frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
  padding-top: 30px;
}

.frame p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  color: #000;
  padding: 50px;
  border-radius: 5px;
  width: 50%;
  text-align: center;
}


.end-image {
  display: block;
  width: 30%;
  margin: 20px auto;
  padding-top: 80px;
  padding-bottom: 40px;
}

.centered-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.centered-content img {
  width: 40%;
  height: auto;
  display: block;
}

.centered-content h1 {
  position: absolute;
  font-size: 40px;
  color: grey;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 80px;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.center .frames-container {
  display: flex;
  justify-content: center;
}

.center .frame {
  margin: 0 auto;
}
