@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
    background-color: #076EB6;
    padding: 0;
    margin: 0 auto;
    font: "roboto";
}
h1, h2, h3, h4, h5, h6 {
    color: white;
}
.headerImage-01{
    width: 100%;
    position: relative;
    filter: brightness(40%);
    grid-row: 1/3;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
}
header {
    font-family: Roboto, Helvetica, sans-serif;
}

.headerTitle {
    color: white;
    /* position: absolute;
    top: 42%;
    margin-left: 50px;
    z-index: 1; */
    font-size: 50px;
    /* grid-row: 1/2; */
}
.headerDescription {
    /* position: absolute;
    color: white;
    top: 49%;
    z-index: 1; */
    font-size: 40px;
    /* margin-left: 20px; */
    width: 550px;
}
.header_content {
    /* display: flex; */
    font-size: 30px;
    font-family: Roboto, Helvetica, sans-serif;
    color: white;
    position: absolute;
    /* bottom: 0; */
    top: 0;
    width: 50%;
    /* align-items: center; */

    /* position: absolute; */
    height: 30px;
    margin-left: 70px;
    /* margin-top: 50px; */
    z-index: 1;
}
.header_content input[type="text"] {
    width: 100%; /* Adjust the width as needed */
    height: 100%; /* Adjust the height as needed */
    font-size: 18px; /* Adjust the font size as needed */
    background-color: white; /* Change the background color */
    color: black; /* Change the text color */
    border: none; /* Remove default border */
    padding: 10px; /* Add padding for better appearance */
    border-radius: 5px; /* Add rounded corners */
}
.header_content input[type="submit"] {
    grid-row: 1/2;
    width: 100px; /* Adjust the width as needed */
    height: 40px; /* Adjust the height as needed */
    font-size: 18px; /* Adjust the font size as needed */
    background-color: blue; /* Change the background color */
    color: pink; /* Change the text color */
    border: none; /* Remove default border */
    border-radius: 5px; /* Add rounded corners */
    cursor: pointer; /* Change cursor to pointer on hover */
    margin-left: 10px; /* Add some space between the input and the submit button */
}
#mainContent{
    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-template-rows: 80px;
    /* place-items: center; */
    /* background-color: #076EB6; */
    gap : 50px;
    margin: 20px;
    font-family: Roboto, Helvetica, sans-serif;
}
.Criteria{
    /* background-color: #076EB6 !important; */
    background-color: #EAEAEA;
    display: grid;
    font-size: 18px;
    border: 2px solid white;
    align-items: center;
    height: 520px;
    width: 400px;
    border-radius: 4px;
    /* grid-row: 1/-1; */
}
.Criteria h2{
    font-size: 35px;
    text-align: center;
    color: #222226;
}
.Criteria label{
    padding: 12px;
    color: #222226;
}
.Criteria select{
    padding: 10px;
}
#searchResults{
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
    border: black 2px solid;
    background-color: #EAEAEA;
    /* background-color: #076EB6; */
    /* display: grid;
    grid-template-columns: 1fr 1fr; */
}
#searchResults h1{
    padding: 0;
    margin: 0;
    grid-column: 1/-1;
    height : 100%;
    width: 100%;
    /* background-color: #626A6A; */
    font-size: 30px;
    /* text-align: center; */
}
.Apartment_image{
    margin: 2em;
    background-color: white;
}
.Apartment_image img{
    height: 300px;
    width: 400px;
    border: black 2px solid;
}
.header_grid {
    display: grid;
    grid-template-rows: 2fr 1fr;
}
.apartmentTitle{
    text-align: center;
    font-size: 35px;
}
#searchButton{
    height: 40px;
    width: 80px;
    font-size: 16px;
    background-color: #076EB6;
    color: #F5F5F5;
}


@media screen and (max-width: 600px){
    .Criteria{
        font-size: 14px;
        margin: 100px 5%;
    }
    .header_content {
        font-size: 2em;
        font-family: Roboto, Helvetica, sans-serif;
        margin-left: 100px 5%;
    }
    .headerTitle {
        top: 42%;
        margin-left: 5%;
        font-size: 1em;
    }
    .headerDescription {
        font-size: .70em;
        margin-left: 5%;
    }
}