@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;
    }
}


header {
    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;
 }

.parallax-about { 
    background-image: url("../img/parallax-about.jpg");
    height: 100%; 
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.about-text {
     color: white;
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
}




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;
 }