@import url('https://fonts.cdnfonts.com/css/angelia-devitson');

* {
    font-family: 'Roboto', sans-serif;
    color: white;
}

svg {
    width: 30px;
    height: 30px;
    fill: white;
    cursor: pointer;
}

body {
    background-color: #313131;
    display: flex;
    flex-flow: column;
    align-items: center;
}

.content {
    width: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
}

.reserv {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

input {
    width: 300px;
    height: 40px;
    margin-bottom: 20px;
    padding: 10px;
    color: black;
    font-family: 'Roboto', sans-serif;
}

button {
    padding: 10px 20px;
    border: unset;
    background-color: white;
    border-radius: 5px;
    font-size: 19px;
    color: black;
    transition: all 1s;
    font-weight: bold;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
}

button:hover {
    background-color: #ED5DBC;
    color: white;
}

.menu {
    display: flex;
    flex-flow: row wrap !important;
    justify-content: space-evenly;
}

@media (min-width: 769px) {
    .menu {
        width: 500px;
    }

    .content {
        align-items: center;
    }

    .logo {
        width: 700px;
    }
}

.menu_item {
    width: 340px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    border: solid 1px white;
    margin-bottom: 30px;
    font-size: 20px;
    cursor: pointer;
    color: white;
    font-weight: bold;
    font-family: 'Angelia Devitson', sans-serif;
}

.menu_item span {
    background-color: rgba(0, 0, 0, 0.767);
    padding: 10px;
}

h1 {
    color: white;
    text-align: center;
    font-family: 'Angelia Devitson', sans-serif;
}

.logo {
    padding: 20px;
    margin-bottom: 7px;
}

.logo img {
    width: 140px;
    height: 100px;
}

.item_1 {
    background-image: url(./assets/img/2.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.item_2 {
    background-image: url(./assets/img/3.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.item_3 {
    background-image: url(./assets/img/4.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}