* {
    cursor: url('cursor.png'), auto !important;
}

body {
    background: url(house.png);
    background-size: 150vw, 150vh;
    image-rendering:optimizeQuality;
}

h1 {
    color: red;
    font-size: 14px;
    font-family: 'Comic Sans MS', 'Times New Roman', Times, serif;
    text-align:center;
    padding-left: 5px;
    padding-right: 5px;
}

.main {
    display: block;
    margin: auto;
    width: 1000px;
    background-color:rgba(245, 245, 220, 0.1);
}

#logo {
    display: flex;
    width: 100%;
    justify-content: center;
    align-content: center;
}

#logo > p {
    position: relative;
    padding-right: 12px;
    bottom: 30px;
    color: red;
    font-size: 30px;
    font-family: 'Comic Sans MS', 'Times New Roman', Times, serif;
    rotate: -10deg;
}

#content {
    display: flex;
    padding-top: 15px;
    padding-bottom: 15px;
}

#left, #right {
    width: 15%;
}

#center {
    width: 70%;
}

#pic {
    width: 70%;
    image-rendering:optimizeQuality;
    display: block;
    margin: auto;
}

#center-content, #content-bottom {
    display: flex;
    padding-top: 15px;
    padding-bottom: 15px;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.center-block {
    width: 30%;
    background-color:rgba(255, 143, 143, 0.664);
}

.center-block, .bottom-block > p {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 13px;
}

#text {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 13px;
}

.bottom-block {
    width: 40%;
    background-color:rgba(255, 143, 143, 0.664);
}

#building {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -15px;
    margin-top: -10px;
}

#building-img {
    width:37%;
    padding:10px;
    align-self:center;
    image-rendering:auto!important;
}

#back {
    font-family: 'Comic Sans MS', 'Times New Roman', Times, serif;
    color: red;
    display: block;
    margin: auto;
}

#tools {
    width:90%;
    padding-top:10px;
    image-rendering:auto;
    display: block;
    margin: auto;
}

#riptix {
    display: none!important;
}

@media only screen and (max-width: 1100px) {
    .main {
        width: 700px;
    }
    #building > p {
        width: 100% !important;
    }
    #building-img {
        width: 80%;
    }
    #riptix {
        display: block!important;
    }
    #ultbuild {
        display: none!important;
    }
}

@media only screen and (max-width: 800px) {
    .main {
        width: 450px;
    }
    
    h1 {
        font-size: 20px;
    }

    .center-block, .bottom-block {
        width: 100%!important;
    }

    .center-block, .bottom-block > p {
        font-size: 16px;
    }

    #left, #right {
        display: none;
    }

    #center {
        width: 100%;
    }

    .bottom-block {
        width: 48%;
    }

    #building > p {
        font-size: 16px;
    }

    #logo-img {
        max-width: 400px;
    }
}