* {
    margin: 0;
    padding: 0;
    font-family: 'Nunito Sans', sans-serif;
}

.container {
    width: 100%;
    height: 100vh;
}

.home_section {
    width: 100%;
    height: 25vh;
    background: url(../assets/img/home_back.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

.navbar_container {
    width: 100%;
    height: 100px;
    background-color: #161616;
}

.navbar_size {
    display: flex;
    max-width: 1024px;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.navbar_title {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 300;
    line-height: 1;
    color: #ffffff;
}

.navbar_links {
    display: flex;
    align-items: flex-end;
    gap: 32px;
}

.navbar_links a {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 300;
    color: #ffffff;
    text-decoration: none;
}

.home_description_section {
    width: 100%;
    min-height: 25vh;
    background-color: #ffffff;
}

.home_description_size {
    max-width: 1024px;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.home_description_title {
    text-align: center;
}

.home_description_grid {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.home_houses_section {
    width: 100%;
    min-height: 40vh;
    background-color: #e1e1e1;
}

.home_houses_size {
    max-width: 1024px;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.home_houses_grid {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.house_box {
    height: 430px;
    width: 100%;
    background-color: #ffffff;
}

.house_box_image {
    height: 250px;
    width: 100%;
}

#house_image_1 {
    background: url(../assets/img/5m2-traehus1.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

#house_image_2 {
    background: url(../assets/img/28m2-fritidshus2.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

#house_image_3 {
    background: url(../assets/img/9m2-pavillion2.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

.house_box_text {
    padding: 15px;
}

.house_box_title {
    font-size: 20px;
    line-height: 1;
    color: #000000;
}

.house_box_size {
    margin-bottom: 10px;
}

.home_seeCatalog_section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 60vh;
    background-color: #ffffff;
    background-image: url(../assets/img/home_seeCatalog_back.jpg);
    background-size: cover;
    background-position: center;
}

.home_seeCatalog_size {
    display: flex;
    max-width: 1024px;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.home_seeCatalog_button {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    padding: 10px 30px 10px 30px;
    border: 2px solid #ffffff;
    border-radius: 50px;
    text-decoration: none;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

@media only screen and (min-width: 0px) and (max-width: 447px) {

    .navbar_size {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .navbar_title {
        font-size: 24px;
        margin-bottom: 10px;
        margin-right: 0px;
    }

    .navbar_links {
        margin-bottom: 0px;
    }

    .home_description_title {
        font-size: 20px;
    }

    .home_description_grid {
        grid-template-columns: none;
        grid-template-rows: none;
    }

    .home_description_grid {
        font-size: 14px;
    }

    .home_houses_grid {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto;
    }
    
}

