@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Raleway", sans-serif;
}
body {
  font-family: "Raleway", sans-serif;
  margin: 0;
  padding: 0;
  background: white;
  color: white;
  text-align: center;
  background: linear-gradient(150deg, #ffc5c7, #ffffff);
}
/* Full screen container */
.screen {
  width: 100%;
  min-height: 100vh; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
}

/* Gradient background section */
.bg {
  width: 100%;
  max-width: 1200px; /* Controls max width */
  padding: 20px 20px;
  background: linear-gradient(to right, #ffecd2, #fcb69f);
  border-radius: 15px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 80px;
}

.container {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

p {
  font-size: 1.2em;
}
.container img {
  width: 150px;  /* Set width */
  height: 150px; /* Set height */
  object-fit: cover; /* Ensures images retain proportions */
  border-radius: 15px; /* Soft rounded corners */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Hover Effect */
.container img:hover {
  transform: scale(1.1); /* Slight zoom effect */
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3); /* Deeper shadow */
}

/* Responsive Design */
@media (max-width: 768px) {
  .container img {
      width: 120px;  /* Reduce size on smaller screens */
      height: 120px;
  }
}


.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 1.2em;
  color: white;
  background: #b70705;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
}

.btn:hover {
  background: #ff7e5f;
}

@media (max-width: 600px) {
  .container {
    margin: 20px;
  }

  h1 {
    font-size: 2em;
  }

  p {
    font-size: 1em;
  }

  .btn {
    font-size: 1em;
    padding: 8px 16px;
  }
}
@media (max-width: 768px) {
  .container img {
      width: 120px;  /* Reduce size on smaller screens */
      height: 120px;
  }
}