@import url('https://fonts.googleapis.com/css?family=Pangolin'); @import url('https://fonts.googleapis.com/css?family=Russo+One'); @import url('https://fonts.googleapis.com/css?family=Alegreya'); :root {
    font-family: 'Pangolin', cursive;
}

.container {
    max-width: 1400px;
    margin: auto;
}

@media (max-width: 361px) {
    .navbar {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (min-width: 991px) {
    .basket-text {
        display: none;
    }
}

@media (max-width: 991px) {
    .basket-img {
        display: none;
    }
}

body {
    background-image: url(../img/backgroundfon.png);
}

.navbar-brand {
    -moz-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    -webkit-transition: all 1s ease-out;
}

.navbar-brand:hover {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.container {
    font-family: 'Pangolin', cursive;
}

main h2 {
    text-align: center;
}

.main-section {
    display: flex;
    margin-top: 20px;
}

@media (max-width: 700px) {
    .menu-nav {
        display: none;
    }
}

.menu-nav {
    width: 200px;
    margin-left: 20px;
    margin-top: 20px;
}

.menu-nav a {
    color: black;
    text-decoration: none;
    padding: 0 3%;
    text-align: center;
}

.menu-nav a:hover {
    color: orange;
}

.menu-position {
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 40px;
}

@media (min-width: 500px) {
    .menu-position {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 800px) {
    .menu-position {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (min-width: 900px) {
    .menu-position {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

.menu-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
}

.menu-img a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-img img {
    display: block;
    width: 100%;
}

.menu-img {
    -moz-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    -webkit-transition: all 1s ease-out;
}

.menu-img:hover {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.menu-img:hover .menu-name {
    display: block;
}

.menu-name {
    display: none;
    position: absolute;
    color: white;
    background: rgba(0, 0, 0, 0.5);
}

footer {
    background-image: url(../img/backgroundfooter.jpeg);
    min-height: 10vh;
    background-size: cover;
    background-position: center;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: center;
    font-size: 25px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer p {
    margin: auto;
    -moz-transition: all 3s ease-out;
    -o-transition: all 3s ease-out;
    -webkit-transition: all 3s ease-out;
}

footer p:hover {
    -webkit-transform: scale(0.1);
    -moz-transform: scale(0.1);
    -o-transform: scale(0.1);
    color: orange;
}
