* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    font-family: "Poppins", sans-serif;
}

body{
    background-image: linear-gradient(45deg, #ffffff 0%, #f0f0f0 75%, #d8d8d8 100%);
}

header.small {
    height: 125px; /* Adjust the height of the smaller header */
    backdrop-filter: blur(10px); /* Add blur effect to the smaller header */
    -webkit-backdrop-filter: blur(10px); /* For Safari */
    background-color: rgba(22, 29, 35, 0.8); /* Adjust the background color and opacity of the smaller header */
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 40px 20px 0 20px;
    margin-top: 200px;
    margin-bottom: 20px;
    background: transparent;
}

.container .heading {
  width: 100%;
  padding-bottom: 50px;
}

.container .heading h2 {
    font-size: 60px;
    font-weight: 300;
    padding-bottom: 10px;
}
.container .heading h2::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: #222;
    margin-top: 10px;
  }

.container .box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.container .box .dream {
    display: flex;
    flex-direction: column;
    width: 32.5%;

}
.container .box .dream img{
    width: 100%;
    padding-bottom: 15px;
    border-radius: 5px;
}

/* Media queries for responsive design */
@media (max-width: 900px) {
    /* Adjustments for tablets and larger screens */
    header.small {
        height: 125px;
    }

    .container {
        margin-top: 200px;
    }

    .container .heading h2::after {
        content: "";
        display: block;
        width: 100%;
        height: 3px;
        background-color: #222;
        margin-top: 10px;
      }
}
