header {
    height: 100px;
    background-image: url(img/head.jpg);
}

body {
    margin: 0px;
    background-image: url(img/bg.jpg);
    background-repeat: repeat;
    font-size: 22px;
}

.menu {
    display: table;
    width: 90%;
    height: 60px;
    margin: 10px auto;
}

.menu>div {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    width: 30%;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 24px;
    border: 1px solid #333;
    border-radius: 10px;
    background: #b5bdc8;
    background: linear-gradient(to bottom, #b5bdf8 0%, #828cb5 36%, #28349b 100%);
    color: white;
}

table {
    margin: auto;
    background-color: white;
    border-radius: 10px;
}

.item {
    width: 568px;
    height: 40px;
    background-image: (img/item.jpg);
    left: 25px;
    position: relative;
    padding: 10px;
    vertical-align: middle;
    display: table-cell;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 30px;
}

.pricelist td {
    border-bottom: 1px solid #333;
}

a {
    color: white;
}

h3 {
    font-size: 30px;
    margin: 0px;
    font-style: italic;
}

h1 {
    font-size: 42px;
    margin: 0px;
    font-style: italic;
}

.mainblock {
    width: 1000px;
    max-width: 100%;
    margin: auto;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 30px;
    padding: 0px 20px 0px 20px;
    box-sizing: border-box;
}

.mainblock>div {
    display: inline-block;
    vertical-align: top;
    box-sizing: border-box;
}

.leftside {
    width: 35%;
    padding: 0px
}

.rightside {
    width: 65%;
    padding-left: 10px;
    margin: auto;
    text-align: center;
}

.portfolio {
    display: block;
}

.portfolio>img {
    width: 250px;
    height: 370px;
    cursor: pointer;
    object-fit: cover;
}

.smallhidden>a {
    color: blue;
}

@media (max-width:520px) {
    .mainblock>div {
        width: 100%;
        padding: 0px;
    }
    .smallhidden {
        display: none;
    }
    .portfolio {
        display: block;
    }
    .portfolio>img {
        width: 85vw;
        height: unset;
        cursor: pointer;
        object-fit: cover;
    }
}