body {
    margin: 0;
    padding: 0;
}

#p1 {
    background-color: skyblue;
    height: 300px;
    width: 100%;
    position: relative;
}

#p2 {
    background-color: beige;
    height: 400px;
    width: 100%;
    position: relative;
}


#p3 {
    background-color: rgb(114, 169, 114);
    height: 300px;
    width: 100%;
    position: relative;
}

.house {
    background-color: burlywood;
    width: 350px;
    height: 350px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.roof {
    width: 0;
    height: 0;
    border-left: 200px solid transparent;
    border-right: 200px solid transparent;
    border-bottom: 150px solid brown;
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
}

.door {
    background-color: brown;
    width: 100px;
    height: 180px;
    position: absolute; 
    bottom: 0; 
    left: 50%; 
    transform: translateX(-50%); 
}

.window {
    background-color: lightblue;
    width: 60px;
    height: 60px;
    position: absolute; 
    top: 80px;
    left: 50%; 
    transform: translateX(-50%); 
    border: 3px solid brown;
}


.sun {
    width: 100px;
    height: 100px;
    background-color: yellow;
    border-radius: 50%;
    position: absolute;
    top: 30px;
    right: 50px;
}


.cloud {
    background-color: white;
    border-radius: 50%;
    position: absolute;
}
.cloud1 {
    width: 80px;
    height: 50px;
    top: 40px; 
    left: 50px; 
}

.cloud2 {
    width: 100px;
    height: 60px;
    top: 70px; 
    left: 250px; 
}


.mountain {
    width: 0;
    height: 0;
    position: absolute;
    bottom: 0;
}
.m1 {
    border-left: 250px solid transparent;
    border-right: 250px solid transparent;
    border-bottom: 200px solid darkslategray;
    left: 100px;
}
.m2 {
    border-left: 200px solid transparent;
    border-right: 200px solid transparent;
    border-bottom: 150px solid dimgray;
    left: 400px;
}
.m3 {
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
    border-bottom: 120px solid gray;
    left: 700px;
}

.tree {
    position: absolute;
    left: 150px; 
    bottom: 0;
    display: flex;
    flex-direction: column; 
    align-items: center;
}

.leaves {
    width: 250px;
    height: 250px;
    background-color: green;
    border-radius: 50%;
}

.trunk {
    width: 70px;
    height: 350px;
    background-color: sienna;
    margin-top: -20px; 
}
