@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}
.darkbg{
    background: url('./images/black-background.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
/* padding styling */

.paddy {
    padding-top:50px;
    padding-bottom: 50px;
}
/* section 2 styling */
.grayson{
    background-color: #f5f5f5;
}

.txt-group {
    max-width: 500px;
}

/* form style */
form {
    background-color: #fff;
    padding: 40px;
}

@media only screen and (max-width: 480px) {
    form {
      padding:20px;
    }
  }

.inp {
    padding: 12px 8px;
    width: 100%;
    margin: 10px 0;
}

.form-select {
    margin: 10px 0;
}
/* form style end */

/* 2bed image */
.image-group{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.image-group > div {
    margin:10px;
}
/* 2bed image */

/* prices */
.white-back {
    background: url('./images/backimage.jpg');
    background-size: cover;
}

/* footer icon */

.icon-group {
    display: flex;
    flex-direction: row;
    padding: 0 10px;
    justify-content: center;
    align-items: center;
}

/* thankyou */
.thanks {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 150px;
}