* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body, html {
    height: 100%;
    width: 100%;
}
body {
    min-height: 100vh;
    font-family: Arial, sans-serif;
    background-color: #222222;
}
div#pasek {
    height: 100px;
    width: 100%;
    background: repeating-linear-gradient(
        45deg,
        yellow,
        yellow 40px,
        black 40px,
        black calc(40px * 2)
    );
    border-bottom: 3px solid black;
}
img#pasek {
    margin-top: 5px;
    margin-left: 50px;
    height: 90px;
    border-radius: 50%;
    box-shadow: 0 0 5px white;
    transition-duration: 0.3s;
} 
img#pasek:hover {
    margin-top: 1px;
    margin-left: 46px;
    height: 98px;
    cursor: pointer;
}
body {
    /*background-image: url(../imgs/stone-texture.jpg);*/
}
h1 {
    text-align: center;
    color: white;
    font-size: 30pt;
    margin-top: 40px;
}
h3.tel {
    text-align: center;
    color: #b9b9b9;
    margin-bottom: 30px;
}

div.machine.left {
    float: left;
    margin-left: 5vw;
}
div.machine.left div.image {
    float: left;
    border-radius: 14px 0 0 14px;
}
div.machine.left div.info {
    float: left;
}

div.machine.right {
    float: right;
    margin-right: 5vw;
}
div.machine.right div.image {
    float: right;
    border-radius: 0 14px 14px 0;
}
div.machine.right div.info {
    float: right;
}

div.machine {
    border: 1px solid white;
    border-radius: 15px;
    color: white;
    margin-bottom: 40px;
}
div.machine div.image {
    user-select: none;
    background-color: white;
    height: 500px;
    width: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
}
div.machine div.image img {
    max-width: 400px;
    max-height: 400px;
}
div.machine div.info {
    width: 300px;
    margin-top: 30px;
    margin-left: 30px;
    margin-right: 30px;
}
div.machine div.info #category {
    color: rgb(240, 241, 169);
}
div.machine div.info #specification {
    margin-top: 20px;
    color: rgb(240, 241, 169);
}
div.machine div.info ul {
    margin-left: 20px;
}
div.machine div.info #price {
    margin-top: 50px;
}

table {
    border: 3px solid black;
    border-spacing: 0;
    text-align: center;
    margin: auto;
    margin-top: 20px;
}
thead td {
    border: 0.5px solid black;
    padding: 3px 15px;
    background-color: rgb(209, 211, 87);
}
tbody td {
    border: 0.5px solid black;
    padding: 15px 40px;
    background-color: rgb(223, 236, 147);
}

div#stopa {
    position: static;
    margin-top: 40px;
    height: 100px;
    width: 100%;
    background: repeating-linear-gradient(
        45deg,
        yellow,
        yellow 40px,
        black 40px,
        black calc(40px * 2)
    );
    clear: both;
    text-align: right;
}
div#stopa h3 {
    color:#494925;
    padding-top: 70px;
}