html {
    height: 100%;
    background: linear-gradient(to bottom, #342727 0%, #49372f 100%);
}

body {
    margin: 30px 50px;
    height: calc(100% - 60px);
}

.content {
    width: 70%;
    margin: 0 auto;
}

.menu {
    background-color: white;
    width: 75%;
    height: 450px;
    display: flex;
    justify-content: center;
    position: relative;
}

.menu-option {
    background: white;
    height: 95px;
    margin: 5px 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.uppercase {
    text-transform: uppercase;
}

.menu-option-name {
    font-size: 25px;
}

.menu-option-price {
    font-size: 20px;
    color: #848080;
}

.options-wrap {
    height: auto;
    width: calc(100% - 100px);
    /* Ширина відступу з кожного боку */
    margin: 20px;
    position: absolute;
    bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    /* Дозволяє елементам переходити на новий ряд при масшт екрану */
}

.options-wrap .menu-option {
    width: calc(50% - 40px);
    /*  2 стовпчики по 3 елементи */
}

.line {
    position: relative;
    margin-top: 20px;
    width: 100%;
    height: 1px;
    background: #ccc;
}

.line:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    /*переміщає псевдоелемент на 50% від його ширини і висоти(тобто вирівнює по центр. осі лінії), а потім повертає його на 45 градусів проти год.стрілки, роблячи ромб*/
    width: 10px;
    height: 10px;
    background: #ccc;
}

.logo {
    background-image: url("../img/burger.jpg");
    background-size: cover;
    /* автоматичне масштабування фону, щоб заповнити всю площу контейнера*/
    width: 25%;
    height: 450px;
    float: left;
    position: relative;
    text-align: center;
}

.logo-text {
    width: 100%;
    height: 225px;
    background-color: black;
    position: absolute;
    top: 205px;
    right: 10px;
    line-height: 0.8;
}

h1 {
    font-size: 50px;
    margin-bottom: 5px;
    margin-top: 40px;
}

h1,
h3 {
    color: white;
    text-transform: uppercase;
}

.yellow-text {
    color: rgb(227, 188, 30);
}

h4 {
    font-weight: 300;
    font-size: 20px;
}

.button {
    display: block;
    background-color: #000000;
    width: 210px;
    height: 55px;
    margin-top: 10px;
    float: right;
    line-height: 55px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: bold;
}